Changeset: 37568221fe33 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/37568221fe33
Modified Files:
        sql/server/sql_parser.y
Branch: Aug2024
Log Message:

fix parser


diffs (13 lines):

diff --git a/sql/server/sql_parser.y b/sql/server/sql_parser.y
--- a/sql/server/sql_parser.y
+++ b/sql/server/sql_parser.y
@@ -2238,8 +2238,7 @@ table_constraint_type:
                          append_int(l, $7 );
                          append_int(l, $8 );
                          $$ = _symbol_create_list( SQL_FOREIGN_KEY, l); }
- |  CHECK '(' search_condition ')' 
-                       { $$ = _symbol_create_symbol(SQL_CHECK, $3); }
+ |  CHECK check_search_condition { $$ = $2; }
  ;
 
 ident_commalist:
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to