mirror of
https://github.com/MariaDB/server.git
synced 2026-04-28 11:15:33 +02:00
Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into rakia.(none):/home/kgeorge/mysql/autopush/B21392-5.0-opt sql/sql_yacc.yy: Auto merged
This commit is contained in:
commit
09df2612b2
5 changed files with 23 additions and 3 deletions
|
|
@ -6326,14 +6326,17 @@ table_wild_one:
|
|||
ident opt_wild opt_table_alias
|
||||
{
|
||||
if (!Select->add_table_to_list(YYTHD, new Table_ident($1), $3,
|
||||
TL_OPTION_UPDATING, Lex->lock_option))
|
||||
TL_OPTION_UPDATING |
|
||||
TL_OPTION_ALIAS, Lex->lock_option))
|
||||
YYABORT;
|
||||
}
|
||||
| ident '.' ident opt_wild opt_table_alias
|
||||
{
|
||||
if (!Select->add_table_to_list(YYTHD,
|
||||
new Table_ident(YYTHD, $1, $3, 0),
|
||||
$5, TL_OPTION_UPDATING,
|
||||
$5,
|
||||
TL_OPTION_UPDATING |
|
||||
TL_OPTION_ALIAS,
|
||||
Lex->lock_option))
|
||||
YYABORT;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue