mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Derived tables bug fix .......
sql/ha_myisam.cc: DISABLE KEYS warnings sql/sql_table.cc: DISABLE KEYS warnings
This commit is contained in:
@@ -789,6 +789,7 @@ TABLE *open_table(THD *thd,const char *db,const char *table_name,
|
||||
DBUG_RETURN(0);
|
||||
}
|
||||
table->query_id=thd->query_id;
|
||||
table->clear_query_id=1;
|
||||
thd->tmp_table_used= 1;
|
||||
goto reset;
|
||||
}
|
||||
@@ -2050,8 +2051,9 @@ bool setup_tables(TABLE_LIST *tables)
|
||||
table->keys_in_use_for_query &= ~map;
|
||||
}
|
||||
table->used_keys &= table->keys_in_use_for_query;
|
||||
if (table_list->shared)
|
||||
if (table_list->shared || table->clear_query_id)
|
||||
{
|
||||
table->clear_query_id= 0;
|
||||
/* Clear query_id that may have been set by previous select */
|
||||
for (Field **ptr=table->field ; *ptr ; ptr++)
|
||||
(*ptr)->query_id=0;
|
||||
|
||||
Reference in New Issue
Block a user