mirror of https://github.com/apache/cassandra
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:
parent
e4f3dbac02
commit
53e777a295
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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:__
|
||||
|
|
|
|||
Loading…
Reference in New Issue