How can I get an execution plan (or smth like that) for a CQL query? I failed to find any consolidated document about CQL query optimization/execution.
For instance I want to find out, is there any difference in execution of queries like:
select some_column from SOME_TABLE where
pkField='val1'
and timestampField='date'
allow filtering;
and
select some_column from SOME_TABLE where
pkField='val1'
and timestampField<='date'
and timestampField>='date'
allow filtering;