diff options
author | Michael Widenius <monty@askmonty.org> | 2011-08-16 19:01:31 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-08-16 19:01:31 +0300 |
commit | 1a344b87e4d153d52468307cc886b5f424cb2dbf (patch) | |
tree | dc0a7e1d20edb07c48225f3834f14ffdef08d4b4 | |
parent | cea27d300236436cfc0a0fca6c0993c3867be8f6 (diff) | |
download | mariadb-git-1a344b87e4d153d52468307cc886b5f424cb2dbf.tar.gz |
Fixed wrong testcase
-rw-r--r-- | mysql-test/suite/maria/r/small_blocksize.result | 42 | ||||
-rw-r--r-- | mysql-test/suite/maria/t/small_blocksize.test | 1 |
2 files changed, 0 insertions, 43 deletions
diff --git a/mysql-test/suite/maria/r/small_blocksize.result b/mysql-test/suite/maria/r/small_blocksize.result index 41d9a561a4d..f418a1f92ef 100644 --- a/mysql-test/suite/maria/r/small_blocksize.result +++ b/mysql-test/suite/maria/r/small_blocksize.result @@ -13,48 +13,6 @@ create table t1 (a int primary key auto_increment, e1 enum('a','b'), e2 enum('a' insert into t1 (vl,bl) values (10,10),(100,100),(1000,1000),(5000,5000),(8000,12000); update t1 set c="test", v1=repeat('a',vl),v2=repeat('b',vl/2),b1=repeat('c',bl),b2=repeat('d',bl); insert into t1 (vl,bl) values (10,10),(100,100),(1000,1000),(1000,5000); -update t1 set c="test", v1=repeat(vl/4,'a'),v2=repeat(vl/5,'b'),b1=repeat(b1*2,'c'),b2=repeat(bl/2,'d'); -Warnings: -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' -Warning 1292 Truncated incorrect INTEGER value: 'a' -Warning 1292 Truncated incorrect INTEGER value: 'b' -Warning 1292 Truncated incorrect INTEGER value: 'c' -Warning 1292 Truncated incorrect INTEGER value: 'd' update t1 set c="test", v1=repeat('a',vl/4),v2=repeat('b',vl/5),b1=repeat('c',bl*2),b2=repeat('d',bl/2); insert into t1 (vl,bl) values (100,100); update t1 set c="test", v1=repeat('a',vl),v2=repeat('b',vl),b1=repeat('c',bl*2),b2=repeat('d',bl/2); diff --git a/mysql-test/suite/maria/t/small_blocksize.test b/mysql-test/suite/maria/t/small_blocksize.test index 673558e6b20..0acf8df6e66 100644 --- a/mysql-test/suite/maria/t/small_blocksize.test +++ b/mysql-test/suite/maria/t/small_blocksize.test @@ -16,7 +16,6 @@ create table t1 (a int primary key auto_increment, e1 enum('a','b'), e2 enum('a' insert into t1 (vl,bl) values (10,10),(100,100),(1000,1000),(5000,5000),(8000,12000); update t1 set c="test", v1=repeat('a',vl),v2=repeat('b',vl/2),b1=repeat('c',bl),b2=repeat('d',bl); insert into t1 (vl,bl) values (10,10),(100,100),(1000,1000),(1000,5000); -update t1 set c="test", v1=repeat(vl/4,'a'),v2=repeat(vl/5,'b'),b1=repeat(b1*2,'c'),b2=repeat(bl/2,'d'); update t1 set c="test", v1=repeat('a',vl/4),v2=repeat('b',vl/5),b1=repeat('c',bl*2),b2=repeat('d',bl/2); insert into t1 (vl,bl) values (100,100); update t1 set c="test", v1=repeat('a',vl),v2=repeat('b',vl),b1=repeat('c',bl*2),b2=repeat('d',bl/2); |