BUG#27270 Can't compile latest 5.1-main

sql/sql_yacc.yy:
  BUG#27270 remove semicolon that is ignored by newer versions of bison but an error with 1.875
This commit is contained in:
unknown 2007-03-19 20:44:46 +01:00
parent 6bb4208084
commit dd322a8c59

View File

@ -7561,13 +7561,13 @@ index_hint_definition:
{
Select->set_index_hint_type($1, $3);
}
'(' key_usage_list ')';
'(' key_usage_list ')'
| USE_SYM key_or_index index_hint_clause
{
Select->set_index_hint_type(INDEX_HINT_USE, $3);
}
'(' opt_key_usage_list ')';
'(' opt_key_usage_list ')'
;
index_hints_list:
index_hint_definition