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

Modified Files:
      Tag: GDK-2
        sql_parser.mx 
Log Message:
propagated changes of Saturday Aug 18 2007 - Tuesday Aug 21 2007
from the development trunk to the GDK-2 branch


Index: sql_parser.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_parser.mx,v
retrieving revision 1.248.2.1
retrieving revision 1.248.2.2
diff -u -d -r1.248.2.1 -r1.248.2.2
--- sql_parser.mx       13 Aug 2007 21:39:41 -0000      1.248.2.1
+++ sql_parser.mx       21 Aug 2007 14:08:12 -0000      1.248.2.2
@@ -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