CQL.textile syntax incorrectly includes optional keyspace for aggregate SFUNC and FINALFUNC

patch by Robert Stupp; reviewed by Sylvain Lebresne for CASSANDRA-10747
This commit is contained in:
Robert Stupp 2015-11-27 09:19:00 +01:00
parent e4f3dbac02
commit 53e777a295
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
2.2.4
* CQL.textile syntax incorrectly includes optional keyspace for aggregate SFUNC and FINALFUNC (CASSANDRA-10747)
* Fix JSON update with prepared statements (CASSANDRA-10631)
* Don't do anticompaction after subrange repair (CASSANDRA-10422)
* Fix SimpleDateType type compatibility (CASSANDRA-10027)

View File

@ -688,9 +688,9 @@ bc(syntax)..
AGGREGATE ( IF NOT EXISTS )?
( <keyspace> '.' )? <aggregate-name>
'(' <arg-type> ( ',' <arg-type> )* ')'
SFUNC ( <keyspace> '.' )? <state-functionname>
SFUNC <state-functionname>
STYPE <state-type>
( FINALFUNC ( <keyspace> '.' )? <final-functionname> )?
( FINALFUNC <final-functionname> )?
( INITCOND <init-cond> )?
p.
__Sample:__