Skip to content

Commit

Permalink
post-merge: typo fixed
Browse files Browse the repository at this point in the history
make_item_func_call_generic() should take `db_int`, not `db`
  • Loading branch information
vuvova committed Dec 21, 2023
1 parent 7f0094a commit 63fb478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_lex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand Down

0 comments on commit 63fb478

Please sign in to comment.