1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Removing the "thd" argument from Item::create_field_for_create_select().

"thd" is available through the "table" argument, as table->in_use.

Backporting (partially) from 10.2.
This commit is contained in:
Alexander Barkov
2016-07-03 10:41:16 +04:00
parent ccdd63388a
commit f832b47833
3 changed files with 6 additions and 6 deletions

View File

@ -3924,10 +3924,10 @@ void select_insert::abort_result_set() {
CREATE TABLE (SELECT) ...
***************************************************************************/
Field *Item::create_field_for_create_select(THD *thd, TABLE *table)
Field *Item::create_field_for_create_select(TABLE *table)
{
Field *def_field, *tmp_field;
return create_tmp_field(thd, table, this, type(),
return create_tmp_field(table->in_use, table, this, type(),
(Item ***) 0, &tmp_field, &def_field, 0, 0, 0, 0);
}
@ -4002,7 +4002,7 @@ static TABLE *create_table_from_items(THD *thd,
while ((item=it++))
{
Field *tmp_field= item->create_field_for_create_select(thd, &tmp_table);
Field *tmp_field= item->create_field_for_create_select(&tmp_table);
if (!tmp_field)
DBUG_RETURN(NULL);