Commit 1e84e14c authored by unknown's avatar unknown

Merge mysql.com:/usr/local/bk/mysql-5.0

into mysql.com:/home/pem/work/mysql-5.0
parents 668bfe22 f9fa47f5
......@@ -585,10 +585,12 @@ class Item_splocal : public Item
}
/* For error printing */
inline void my_name(char **strp, uint *lengthp)
inline LEX_STRING *my_name(LEX_STRING *get_name)
{
*strp= m_name.str;
*lengthp= m_name.length;
if (!get_name)
return &m_name;
(*get_name)= m_name;
return get_name;
}
bool is_splocal() { return 1; } /* Needed for error checking */
......
......@@ -4346,11 +4346,11 @@ simple_expr:
{
if ($3->is_splocal())
{
LEX_STRING name;
LEX_STRING *name;
Item_splocal *il= static_cast<Item_splocal *>($3);
il->my_name(&name.str, &name.length);
my_error(ER_WRONG_COLUMN_NAME, MYF(0), name.str);
name= il->my_name(NULL);
my_error(ER_WRONG_COLUMN_NAME, MYF(0), name->str);
YYABORT;
}
$$= new Item_default_value($3);
......
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