我们如何在Cassandra“用户定义函数”中传递常量值?我的UDF签名:
CREATE OR REPLACE FUNCTION spatial_keyspace.state_group_and_max( state map<text, int>, type text, pkey int, level int)
CQL查询:
select spatial_keyspace.group_and_count(quadkey, pkey, 5) from spatial_keyspace.businesspoints where longitude >= -179.98333 and longitude <=86 and latitude >= -179.98333 and latitude <= 86 LIMIT 10 ALLOW FILTERING;
我正在使用Cassandra 3.5。
答案 0 :(得分:1)