diff options
author | unknown <monty@hundin.mysql.fi> | 2002-06-04 11:32:33 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-06-04 11:32:33 +0300 |
commit | f45dc577290c7298b33ba70eba1c8a80037201ff (patch) | |
tree | 657090727aba266449e99a97aaef278796d3d03b /mysql-test/t/heap_btree.test | |
parent | daff6c5115b74c611222095fff40d075909ae454 (diff) | |
download | mariadb-git-f45dc577290c7298b33ba70eba1c8a80037201ff.tar.gz |
Update results for new SHOW FULL COLUMNS
Portability fixes
include/my_tree.h:
Add missing include file.
mysql-test/r/select.result:
Update results for new SHOW FULL COLUMNS
mysql-test/r/type_blob.result:
Update results for new SHOW FULL COLUMNS
mysql-test/r/type_float.result:
Update results for new SHOW FULL COLUMNS
mysql-test/r/type_ranges.result:
Update results for new SHOW FULL COLUMNS
mysql-test/t/heap_btree.test:
Update results for new SHOW FULL COLUMNS
Diffstat (limited to 'mysql-test/t/heap_btree.test')
-rw-r--r-- | mysql-test/t/heap_btree.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/heap_btree.test b/mysql-test/t/heap_btree.test index 2793a22e94d..e4b7d8674b9 100644 --- a/mysql-test/t/heap_btree.test +++ b/mysql-test/t/heap_btree.test @@ -60,12 +60,12 @@ insert into t1 values(1,1),(1,2),(2,3),(1,3),(1,4),(1,5),(1,6); select * from t1 where a=1; insert into t1 values(1,1),(1,2),(2,3),(1,3),(1,4),(1,5),(1,6); select * from t1 where a=1; ---replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x +--replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 x 13 x 14 x explain select * from t1 where a=1 order by a,b; ---replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x +--replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 x 13 x 14 x explain select * from t1 where a=1 order by b; select * from t1 where b=1; ---replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x +--replace_result 0 x 1 x 2 x 3 x 4 x 5 x 6 x 7 x 8 x 9 x 10 x 11 x 12 x 13 x 14 x explain select * from t1 where b=1; drop table t1; |