Changeset: 0681a3f2b084 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0681a3f2b084
Modified Files:
        sql/server/sql_parser.y
Branch: Oct2020
Log Message:

Completely ignore STORAGE in table creation.
This caused a crash but not anymore:
CREATE TABLE foo (i int) STORAGE fruit 'banana';


diffs (11 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
@@ -1502,7 +1502,6 @@ table_def:
          append_string(l, NULL);
          append_list(l, NULL);
          append_int(l, $2);
-         append_list(l, $5);
          append_symbol(l, NULL); /* only used for merge table */
          $$ = _symbol_create_list( SQL_CREATE_TABLE, l ); }
  |  TABLE if_not_exists qname FROM sqlLOADER func_ref
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to