summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-06-04 11:32:33 +0300
committermonty@hundin.mysql.fi <>2002-06-04 11:32:33 +0300
commit920a409ce920f7cb318da2c4eda9d33523ecbf06 (patch)
tree657090727aba266449e99a97aaef278796d3d03b /mysql-test/t
parentfc8490a111c7bd979e927c105e731a1c4881c0a8 (diff)
downloadmariadb-git-920a409ce920f7cb318da2c4eda9d33523ecbf06.tar.gz
Update results for new SHOW FULL COLUMNS
Portability fixes
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/heap_btree.test6
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;