Tag: cws_src680_dba24b User: oj Date: 2007-08-24 08:20:36+0000 Modified: dba/connectivity/source/parse/sqlbison.y
Log: #i69678# allow functions in group by File Changes: Directory: /dba/connectivity/source/parse/ ========================================== File [changed]: sqlbison.y Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/parse/sqlbison.y?r1=1.57.6.2&r2=1.57.6.3 Delta lines: +10 -4 -------------------- --- sqlbison.y 2007-08-24 06:48:15+0000 1.57.6.2 +++ sqlbison.y 2007-08-24 08:20:33+0000 1.57.6.3 @@ -1,7 +1,7 @@ %{ //-------------------------------------------------------------------------- // -// $Header: /cvs/dba/connectivity/source/parse/sqlbison.y,v 1.57.6.2 2007/08/24 06:48:15 oj Exp $ +// $Header: /cvs/dba/connectivity/source/parse/sqlbison.y,v 1.57.6.3 2007/08/24 08:20:33 oj Exp $ // // Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. // @@ -9,7 +9,7 @@ // OJ // // Last change: -// $Author: oj $ $Date: 2007/08/24 06:48:15 $ $Revision: 1.57.6.2 $ +// $Author: oj $ $Date: 2007/08/24 08:20:33 $ $Revision: 1.57.6.3 $ // // Description: // @@ -1013,9 +1013,15 @@ column_ref {$$ = SQL_NEW_COMMALISTRULE; $$->append($1);} + | set_fct_spec + {$$ = SQL_NEW_COMMALISTRULE; + $$->append($1);} | column_ref_commalist ',' column_ref {$1->append($3); $$ = $1;} + | column_ref_commalist ',' set_fct_spec + {$1->append($3); + $$ = $1;} ; opt_having_clause: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
