Reputation: 11
I am using DSE Cassandra and wanted to use solr_query for the collection (map, list, set etc.) type columns so wanted the syntax of solr_query for this.
The sample table schema is as follows
CREATE TABLE user_properties (
id UUID,
user_id INT,
properties MAP<text, text>,
PRIMARY KEY (id)
)
Here how do I do solr_query
for the 'properties
' column?
Upvotes: 0
Views: 39