diff options
author | unknown <sanja@montyprogram.com> | 2012-03-01 09:27:42 +0200 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2012-03-01 09:27:42 +0200 |
commit | bb4b0c1a44196fb7a14df55814dac6197cb1caf9 (patch) | |
tree | e5e02fd7227125b2ca927eb6197fcd62d3c1338e /mysql-test/suite/maria/t/maria3.test | |
parent | adf3deda888a7a2f3dc28a41f859080454d72dfc (diff) | |
download | mariadb-git-bb4b0c1a44196fb7a14df55814dac6197cb1caf9.tar.gz |
Return original checksum value inside the test.
Move ucs2 test in separate file (MDEV-167).
Diffstat (limited to 'mysql-test/suite/maria/t/maria3.test')
-rw-r--r-- | mysql-test/suite/maria/t/maria3.test | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/mysql-test/suite/maria/t/maria3.test b/mysql-test/suite/maria/t/maria3.test index b36851c756b..868a21d6bfb 100644 --- a/mysql-test/suite/maria/t/maria3.test +++ b/mysql-test/suite/maria/t/maria3.test @@ -305,6 +305,7 @@ drop table t1; set global aria_page_checksum=1; create table t1 (a int); show create table t1; +set global aria_page_checksum=0; drop table t1; # @@ -554,27 +555,7 @@ INSERT INTO t2 VALUES (1,'M','','H'), SELECT * FROM t1, t2 WHERE a = g ORDER BY b; drop table t1,t2; -# End of 5.1 tests - -# -# bug#905716: Assertion `page->size <= share->max_index_block_size' -# - -CREATE TABLE t1 ( a VARCHAR(800),KEY(a) ) - ENGINE=Aria DEFAULT CHARACTER SET latin1; -INSERT INTO t1 VALUES - (REPEAT('abc ',200)), (REPEAT('def ',200)), - (REPEAT('ghi ',200)), (REPEAT('jkl ',200)); -INSERT INTO t1 SELECT * FROM t1; -# check table is not needed to reproduce the problem, -# but shows that by this time the table appears to be okay. -CHECK TABLE t1; -ALTER TABLE t1 MODIFY a VARCHAR(800) CHARSET `ucs2`; -CHECK TABLE t1; -SHOW CREATE table t1; -DROP TABLE t1; - -# End of 5.2 tests +--echo # End of 5.1 tests --disable_result_log --disable_query_log |