Changeset: 42946980fa49 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/42946980fa49
Modified Files:
        sql/server/sql_parser.y
Branch: clean_parser
Log Message:

allow comment on procedure analyze again


diffs (19 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
@@ -6171,6 +6171,7 @@ ident:
 
 non_reserved_keyword:
   AUTHORIZATION        { $$ = sa_strdup(SA, "authorization"); }/* sloppy: 
officially reserved */
+| ANALYZE      { $$ = sa_strdup(SA, "analyze"); }      /* sloppy: officially 
reserve */
 | CACHE                { $$ = sa_strdup(SA, "cache"); }
 | CYCLE                { $$ = sa_strdup(SA, "cycle"); }        /* sloppy: 
officially reserved */
 | sqlDATE      { $$ = sa_strdup(SA, "date"); }         /* sloppy: officially 
reserved */
@@ -6325,7 +6326,6 @@ function_name_keyword:
 
 reserved_keyword:
   ALL          { $$ = sa_strdup(SA, "all"); }
-| ANALYZE      { $$ = sa_strdup(SA, "analyze"); }
 | AND          { $$ = sa_strdup(SA, "and"); }
 | ANY          { $$ = sa_strdup(SA, "ANY"); }
 //| ARRAY              { $$ = sa_strdup(SA, "ARRAY"); }
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to