Commit 63fb478f authored by Sergei Golubchik's avatar Sergei Golubchik

post-merge: typo fixed

make_item_func_call_generic() should take `db_int`, not `db`
parent 7f0094aa
......@@ -9770,7 +9770,7 @@ Item *LEX::make_item_func_call_generic(THD *thd,
if (!db_int.str || check_routine_name(&name))
return NULL;
return make_item_func_call_generic(thd, (Lex_ident_sys)db, name, args);
return make_item_func_call_generic(thd, Lex_ident_sys(db_int.str, db_int.length), name, args);
}
......
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