0

以下将“DoubleType(reversed=false)”打印到控制台;我如何告诉 pycassa 停止这样做?当我更改列时也会发生这种情况。

Python 2.7.2+ (default, Nov 30 2011, 19:22:03) 
[GCC 4.6.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from pycassa.types import CompositeType, UTF8Type, LongType, DoubleType, BooleanType
>>> from pycassa.system_manager import SystemManager
>>> SystemManager().create_keyspace('test', strategy_options={"replication_factor": "1"})
>>> SystemManager().create_column_family('test', 'testcf', key_validation_class=DoubleType())
DoubleType(reversed=false)

谢谢

4

1 回答 1

1

这是一个在这里修复的无害错误:https ://github.com/pycassa/pycassa/issues/98

下一个版本不会有这个问题。

于 2012-01-20T01:45:46.627 回答