diff options
author | unknown <sergefp@mysql.com> | 2005-08-07 21:21:30 +0000 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-08-07 21:21:30 +0000 |
commit | d7086c4a0cc5d6240b1a0ad2b4eb83a935fadd1e (patch) | |
tree | a87e66f1c8dabfecf46c71ae6ca088b691691813 /sql/sql_show.cc | |
parent | f3ce475dcec23a51cff93aaa1bbaa27eba978b05 (diff) | |
download | mariadb-git-d7086c4a0cc5d6240b1a0ad2b4eb83a935fadd1e.tar.gz |
BUG#11869:part 2: post-review fixes: merging into 5.0
We're out of bits in st_select_lex->options so make TMP_TABLE_FORCE_MYISAM ==
OPTION_FOUND_COMMENT (the latter is not used by create_tmp_table).
mysql-test/r/create.result:
Updated the test result
mysql-test/r/fulltext_order_by.result:
Drop all tables this test uses
mysql-test/t/fulltext_order_by.test:
Drop all tables this test uses
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 56272b4fdaf..a63ef8d689c 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -3319,7 +3319,8 @@ TABLE *create_schema_table(THD *thd, TABLE_LIST *table_list) if (!(table= create_tmp_table(thd, tmp_table_param, field_list, (ORDER*) 0, 0, 0, (select_lex->options | thd->options | - TMP_TABLE_ALL_COLUMNS), + TMP_TABLE_ALL_COLUMNS) & + ~TMP_TABLE_FORCE_MYISAM, HA_POS_ERROR, table_list->alias))) DBUG_RETURN(0); table_list->schema_table_param= tmp_table_param; |