我的代码如下。
from uuid import uuid4
from uuid import uuid1
from cassandra.cqlengine import columns, connection
from cassandra.cqlengine.models import Model
from cassandra.cqlengine.management import sync_table
class BaseModel(Model):
__abstract__ = True
id = columns.UUID(primary_key=True, default=uuid4)
created_timestamp = columns.TimeUUID(primary_key=True,
clustering_order='DESC',
default=uuid1)
deleted = columns.Boolean(required=True, default=False)
class OtherModel(BaseModel):
__table_name__ = 'other_table'
if __name__ == '__main__':
connection.setup(hosts=['localhost'],
default_keyspace='test')
sync_table(OtherModel)
OtherModel.create()
首次执行后,我可以在运行查询时看到db中的记录。
cqlsh> select * from test.other_table;
id | created_timestamp | deleted
--------------------------------------+--------------------------------------+---------
febc7789-5806-44d8-bbd5-45321676def9 | 840e1b66-cc73-11e6-a66c-38c986054a88 | False
(1 rows)
在此之后,我在name
中添加了新列OtherModel
并运行相同的程序。
class OtherModel(BaseModel):
__table_name__ = 'other_table'
name = columns.Text(required=True, default='')
if __name__ == '__main__':
connection.setup(hosts=['localhost'],
default_keyspace='test')
sync_table(OtherModel)
OtherModel.create(name='test')
检查数据库条目时
cqlsh> select * from test.other_table;
id | created_timestamp | deleted | name
--------------------------------------+--------------------------------------+---------+------
936cfd6c-44a4-43d3-a3c0-fdd493144f4b | 4d7fd78c-cc74-11e6-bb49-38c986054a88 | False | test
febc7789-5806-44d8-bbd5-45321676def9 | 840e1b66-cc73-11e6-a66c-38c986054a88 | False | null
(2 rows)
name
有一行null
。
但我无法查询null
值。
cqlsh> select * from test.other_table where name=null;
InvalidRequest: code=2200 [Invalid query] message="Unsupported null value for indexed column name"
我得到了参考How Can I Search for Records That Have A Null/Empty Field Using CQL?。
当我在模型中设置default=''
时,为什么没有为表中的所有null
值设置?
有没有办法将null
中的name
值设置为带有查询的默认值''
?
答案 0 :(得分:2)
空单元格实际上它没有被设置。由于它是一个过滤操作,因此缺少数据不是您可以查询的内容。它不具有可扩展性或不可能有效地执行,因此它不是C *会鼓励的(或者在这种情况下甚至允许)。
返回并追溯设置所有先前创建的行的值将非常昂贵(必须读取所有内容,然后执行尽可能多的写入)。应用方面非常容易,只是说if name is null its ''
。