CQL: Nie można zerować Sprawdź w klauzuli „Gdzie”

Spróbuj zwrócić wszystkie wiersze, w których określone pole ma wartość NULL lub nie ma wartości NULL.

select * from ADDRESS where addr1 = null;  

lub

select * from ADDRESS where addr1 = 'NULL';  

addr1 może być polem logicznym lub tekstowym.

próbowałem!= null, is null, <> null, iisnull(addr1, 'NULL')

ale dostaję

no viable alternative at input '='

lub

no index columns present in by-columns clause with "equals' operator"

Korzystanie z Cassandra 1.1.1 i Java 1.7_05

questionAnswers(1)

yourAnswerToTheQuestion