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

Modified Files:
        sql_parser.mx 
Log Message:
propagated changes of Friday Aug 17 2007 - Tuesday Aug 21 2007
from the SQL_2-18 branch to the development trunk

There were conflicts in
        src/test/leaks/Tests/check0.stable.out.Five
        src/test/leaks/Tests/check1.stable.out.Five
        src/test/leaks/Tests/check2.stable.out.Five
        src/test/leaks/Tests/check3.stable.out.Five
        src/test/leaks/Tests/check4.stable.out.Five
        src/test/leaks/Tests/check5.stable.out.Five
which I have not attempted to resolve (I didn't change these files).


Index: sql_parser.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_parser.mx,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -d -r1.249 -r1.250
--- sql_parser.mx       13 Aug 2007 09:27:30 -0000      1.249
+++ sql_parser.mx       21 Aug 2007 12:51:57 -0000      1.250
@@ -3119,6 +3119,11 @@
                          append_symbol(l, $2);
                          $$ = _symbol_create_list( SQL_UNOP, l ); }
  |  '(' scalar_exp ')'         { $$ = $2; }
+ | NOT scalar_exp      { dlist *l = L();
+                         append_list(l, 
+                               append_string(L(), sa_strdup(SA, "not")));
+                         append_symbol(l, $2);
+                         $$ = _symbol_create_list( SQL_UNOP, l ); }
  ;
 
 scalar_exp:


-------------------------------------------------------------------------
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