diff --git a/CHANGES.txt b/CHANGES.txt index d3e54a69f7..26cb5d2c29 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 5.1 + * Add support for NOT operators in WHERE clauses. Fixed Three Valued Logic (CASSANDRA-18584) * Allow getendpoints for system tables and make sure getNaturalReplicas work for MetaStrategy (CASSANDRA-19846) * On upgrade, handle pre-existing tables with unexpected table ids (CASSANDRA-19845) * Reconfigure CMS before assassinate (CASSANDRA-19768) diff --git a/doc/cql3/CQL.textile b/doc/cql3/CQL.textile index d60b4d476f..4c2b09acc3 100644 --- a/doc/cql3/CQL.textile +++ b/doc/cql3/CQL.textile @@ -940,6 +940,10 @@ bc(syntax).. | IN | '(' (',' )* ')' IN '(' ( ( ',' )* )? ')' | '(' (',' )* ')' IN + | NOT IN '(' ( ( ',' )* )? ')' + | NOT IN + | '(' (',' )* ')' NOT IN '(' ( ( ',' )* )? ')' + | '(' (',' )* ')' NOT IN