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:
opt_binary:
/* empty */ {}
| BINARY { Lex->type|=BINARY_FLAG; };
| BINARY { Lex->type|=BINARY_FLAG; }
| CHAR_SYM SET opt_equal ident {}
;
references:
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