@@ -428,7 +428,7 @@ create_view_stmt
428428 type: a[0 ].toLowerCase (),
429429 keyword: ' view' ,
430430 replace: or && ' or replace' ,
431- temporary: tp && tp .toLowerCase (),
431+ temporary: tp && tp[ 0 ] .toLowerCase (),
432432 recursive: r && r .toLowerCase (),
433433 columns: c && c[2 ],
434434 select: s,
@@ -805,7 +805,7 @@ create_table_stmt
805805 ast: {
806806 type: a[0 ].toLowerCase (),
807807 keyword: ' table' ,
808- temporary: tp && tp .toLowerCase (),
808+ temporary: tp && tp[ 0 ] .toLowerCase (),
809809 if_not_exists: ife,
810810 table: t,
811811 ignore_replace: ir && ir[0 ].toLowerCase (),
@@ -836,7 +836,7 @@ create_table_stmt
836836 ast: {
837837 type: a[0 ].toLowerCase (),
838838 keyword: ' table' ,
839- temporary: tp && tp .toLowerCase (),
839+ temporary: tp && tp[ 0 ] .toLowerCase (),
840840 if_not_exists: ife,
841841 table: t,
842842 like: lt
@@ -869,7 +869,7 @@ create_sequence
869869 ast: {
870870 type: a[0 ].toLowerCase (),
871871 keyword: ' sequence' ,
872- temporary: tp && tp .toLowerCase (),
872+ temporary: tp && tp[ 0 ] .toLowerCase (),
873873 if_not_exists: ife,
874874 sequence: [t],
875875 create_definitions: c,
@@ -4716,8 +4716,8 @@ KW_ALTER = "ALTER"i !ident_start
47164716KW_SELECT = "SELECT" i ! ident_start
47174717KW_UPDATE = "UPDATE" i ! ident_start
47184718KW_CREATE = "CREATE" i ! ident_start
4719- KW_TEMPORARY = "TEMPORARY" i ! ident_start { return ' TEMPORARY ' ; }
4720- KW_TEMP = "TEMP" i ! ident_start { return ' TEMP ' ; }
4719+ KW_TEMPORARY = "TEMPORARY" i ! ident_start
4720+ KW_TEMP = "TEMP" i ! ident_start
47214721KW_DELETE = "DELETE" i ! ident_start
47224722KW_INSERT = "INSERT" i ! ident_start
47234723KW_RECURSIVE = "RECURSIVE" ! ident_start { return ' RECURSIVE' ; }
0 commit comments