summaryrefslogtreecommitdiff
path: root/mysql-test/t/query_cache.test
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-01-12 15:40:52 +0200
committerunknown <bell@sanja.is.com.ua>2002-01-12 15:40:52 +0200
commit985763d6496dcc85400b07773807b5221b449527 (patch)
tree2e413a6bbae645fe6c932fc7de7817ec35221dba /mysql-test/t/query_cache.test
parent87ec5559477643e2574872fca93a5b4898868de0 (diff)
downloadmariadb-git-985763d6496dcc85400b07773807b5221b449527.tar.gz
New result block allocation strategy
mysql-test/r/query_cache.result: Test changed according with new block sizes mysql-test/t/query_cache.test: Test changed according with new block sizes
Diffstat (limited to 'mysql-test/t/query_cache.test')
-rw-r--r--mysql-test/t/query_cache.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/query_cache.test b/mysql-test/t/query_cache.test
index 280f2202af1..b4d00639587 100644
--- a/mysql-test/t/query_cache.test
+++ b/mysql-test/t/query_cache.test
@@ -93,8 +93,6 @@ create table t2 (a text not null);
create table t21 (a text not null);
create table t3 (a text not null);
insert into t1 values("1111111111111111111111111111111111111111111111111111");
-insert into t11 select * from t1;
-insert into t21 select * from t1;
insert into t2 select * from t1;
insert into t1 select * from t2;
insert into t2 select * from t1;
@@ -110,6 +108,9 @@ insert into t1 select * from t2;
insert into t2 select * from t1;
insert into t1 select * from t2;
insert into t2 select * from t1;
+# t11 and t21 must be over 4Kb (QUERY_CACHE_MIN_RESULT_DATA_SIZE)
+insert into t11 select * from t1;
+insert into t21 select * from t1;
insert into t1 select * from t2;
insert into t2 select * from t1;
insert into t1 select * from t2;