Hi All,
i have a question about these two queries:
SELECT * FROM table;
and
SELECT COUNT(*) FROM table;
Following the Cassandra data modeling they should scan the whole cassandra space, but i noticed that no error is thrown and no ALLOW FILTERING is required.
So my question is: are they inefficient? or is there an exception for these two queries?
Thanks.