mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Automerge fix.
sql/sql_view.cc: Manually merged.
This commit is contained in:
@ -562,7 +562,7 @@ bool mysql_create_view(THD *thd, TABLE_LIST *views,
|
|||||||
LEX_STRING *name;
|
LEX_STRING *name;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i= 0; name= names++; i++)
|
for (i= 0; (name= names++); i++)
|
||||||
{
|
{
|
||||||
buff.append(i ? ", " : "(");
|
buff.append(i ? ", " : "(");
|
||||||
append_identifier(thd, &buff, name->str, name->length);
|
append_identifier(thd, &buff, name->str, name->length);
|
||||||
|
Reference in New Issue
Block a user