Update of /cvsroot/monetdb/sql/src/server
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5067

Modified Files:
        sql_parser.mx 
Log Message:
fixed bison/yacc warning in sql_parser



Index: sql_parser.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_parser.mx,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -d -r1.254 -r1.255
--- sql_parser.mx       6 Sep 2007 11:01:01 -0000       1.254
+++ sql_parser.mx       7 Sep 2007 20:09:21 -0000       1.255
@@ -729,7 +729,6 @@
                        }
  | SQL_DEBUG           { mvc *m = (mvc*)parm;
                          if (m->scanner.mode == LINE_1) {
-                               $$ = NULL;
                                yyerror("We only support debugging SQL in 
interactive mode");
                                YYABORT;
                          }
@@ -742,7 +741,6 @@
                        }
  | SQL_TRACE           { mvc *m = (mvc*)parm;
                          if (m->scanner.mode == LINE_1) {
-                               $$ = NULL;
                                yyerror("We do not support tracing SQL in 
interactive mode");
                                YYABORT;
                          }
@@ -4863,6 +4861,7 @@
       ')'
        { dlist *l = L();
           dlist *aggr = L();
+
          dlist *window_spec = L();
 
          append_string(aggr, "xmlagg");


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to