I have a custom index created by solr on cassandra table
CREATE CUSTOM INDEX custom_index ON table_name (column) USING 'com.datastax.bdp.search.solr.Cql3SolrSecondaryIndex';
As far as i know, in the select clause of cassandra we can only have primary key in the where clause for select query.
Can I use this custom index in the where clause?