mirror of
https://github.com/MariaDB/server.git
synced 2026-05-09 08:34:28 +02:00
After merge fixes
Don't create temporary objects with no table name myisam/mi_open.c: After merge fix mysql-test/r/analyse.result: After merge fix mysql-test/r/backup.result: After merge fix mysql-test/r/create.result: After merge fix mysql-test/r/delete.result: After merge fix mysql-test/r/func_like.result: After merge fix mysql-test/r/innodb.result: After merge fix mysql-test/r/rpl_loaddatalocal.result: After merge fix mysql-test/r/type_timestamp.result: After merge fix mysql-test/t/delete.test: Change to not use table 't' sql/sql_class.h: Remove usage of thd when creating 'Table_ident' Don't create temporary objects with no table name sql/sql_derived.cc: Indentation fix sql/sql_select.cc: After merge fix Fixed wrong return -> DBUG_RETURN() sql/sql_yacc.yy: Remove usage of thd when creating 'Table_ident'
This commit is contained in:
parent
a821703912
commit
b0b315dce3
14 changed files with 75 additions and 46 deletions
|
|
@ -167,11 +167,13 @@ int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit,
|
|||
(TABLE_LIST*) select_cursor->table_list.first,
|
||||
select_cursor->with_wild,
|
||||
select_cursor->item_list, select_cursor->where,
|
||||
select_cursor->order_list.elements+select_cursor->group_list.elements,
|
||||
(select_cursor->order_list.elements+
|
||||
select_cursor->group_list.elements),
|
||||
(ORDER *) select_cursor->order_list.first,
|
||||
(ORDER *) select_cursor->group_list.first,
|
||||
select_cursor->having, (ORDER*) NULL,
|
||||
select_cursor->options | thd->options | SELECT_NO_UNLOCK,
|
||||
(select_cursor->options | thd->options |
|
||||
SELECT_NO_UNLOCK),
|
||||
derived_result, unit, select_cursor, 1);
|
||||
|
||||
if (!res)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue