small bug fix for 2.95.4

This commit is contained in:
unknown 2002-02-19 15:32:11 +02:00
parent 728c191b11
commit e07c92cd95

View File

@ -776,7 +776,7 @@ opt_table_options:
table_options:
table_option { $$=$1; }
| table_option table_options { $$= $1 | $2 }
| table_option table_options { $$= $1 | $2; }
table_option:
TEMPORARY { $$=HA_LEX_CREATE_TMP_TABLE; }