Daniel is right that this is not supported yet, but for the wrong reason. :)
Null is actually supported as of 1.2.4, per the link in the original issue. However, unindexed filtered queries like this are still not supported (https://issues.apache.org/jira/browse/CASSANDRA-6377), even with ALLOW FILTERING
, because they are out of scope for Cassandra's mission of supporting applications at scale. This kind of query is quite useful while prototyping, but when you have billions of rows, ten of which are null, and unleash this on your cluster you're going to have a bad time.
(Now, if you need to do this as part of analytics at scale, Cassandra points you to our Hadoop integration or DataStax Enterprise.)
That said, we're moving towards the position of, let users do what they want even if it means shooting themselves in the foot. We expect to support this kind of query in 3.0 later in 2014.