diff options
author | unknown <monty@mysql.com> | 2004-12-12 19:54:26 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-12-12 19:54:26 +0200 |
commit | 5ae35e327a39ec036a9d938f8555278bf96f2a27 (patch) | |
tree | 0b2135b3614cd5ba6da325532046689525053f1e /mysql-test/t/heap.test | |
parent | 47c390151863a684077941e9bf037083646e294b (diff) | |
download | mariadb-git-5ae35e327a39ec036a9d938f8555278bf96f2a27.tar.gz |
Fix test results that may change from run to run
Added comments (from code review on pull)
mysql-test/r/heap.result:
Fix results that may change from run to run
mysql-test/r/ps_5merge.result:
Fix wrong result
mysql-test/t/heap.test:
Make results predictable
sql/sql_show.cc:
Add comments
Fixed typo
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r-- | mysql-test/t/heap.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test index 31b7f997519..6353cd78d6a 100644 --- a/mysql-test/t/heap.test +++ b/mysql-test/t/heap.test @@ -360,6 +360,8 @@ explain select count(*) from t1 where v between 'a' and 'a ' and v between 'a ' --error 1062 alter table t1 add unique(v); select concat('*',v,'*',c,'*',t,'*') as qq from t1 where v='a' order by length(concat('*',v,'*',c,'*',t,'*')); +# Number of rows is not constant for b-trees keys +--replace_column 9 # explain select * from t1 where v='a'; drop table t1; |