diff options
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index 65a4dabb85b..5ddb0a86592 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -3839,6 +3839,11 @@ bool my_var_sp::set(THD *thd, Item *item) return thd->spcont->set_variable(thd, offset, &item); } +bool my_var_sp_row_field::set(THD *thd, Item *item) +{ + return thd->spcont->set_variable_row_field(thd, offset, m_field_offset, &item); +} + int select_dumpvar::send_data(List<Item> &items) { List_iterator_fast<my_var> var_li(var_list); |