举例说明:
import cql
cql connect to CF/Keyspace
last_key = XYZ (say it's getting fetched from else where)
cursor.execute(select * from domain_dimension where key=:key", key="last_key")
CQL 文档说它可以完成,但在控制台上它说 execute() 得到了意外的关键字参数。
Cassandra CQL 真的支持查询替换吗?