Commit 50d569a3 authored by unknown's avatar unknown

Fixed syntax error in sql_yacc.yy (with bison 1.75).


sql/sql_yacc.yy:
  Fixed syntax error (with bison 1.75).
parent 094c801d
...@@ -1090,8 +1090,9 @@ attribute: ...@@ -1090,8 +1090,9 @@ attribute:
opt_binary: opt_binary:
/* empty */ {} /* empty */ {}
| BINARY { Lex->type|=BINARY_FLAG; }; | BINARY { Lex->type|=BINARY_FLAG; }
| CHAR_SYM SET opt_equal ident {} | CHAR_SYM SET opt_equal ident {}
;
references: references:
REFERENCES table_ident opt_on_delete {} REFERENCES table_ident opt_on_delete {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment