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 /mysql-test/t/fulltext_order_by.test | |
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 'mysql-test/t/fulltext_order_by.test')
-rw-r--r-- | mysql-test/t/fulltext_order_by.test | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/t/fulltext_order_by.test b/mysql-test/t/fulltext_order_by.test index 5bad8161a0a..dcda00fecba 100644 --- a/mysql-test/t/fulltext_order_by.test +++ b/mysql-test/t/fulltext_order_by.test @@ -1,5 +1,5 @@ --disable_warnings -DROP TABLE IF EXISTS t1; +DROP TABLE IF EXISTS t1,t2,t3; --enable_warnings CREATE TABLE t1 ( @@ -117,8 +117,6 @@ where order by match(b.betreff) against ('+abc' in boolean mode) desc; --- todo psergey: fix ---error 1214 select a.text, b.id, b.betreff from t2 a inner join t3 b on a.id = b.forum inner join |