diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-11-20 13:11:35 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-12-12 20:27:25 +0100 |
commit | 0bef3bb8d0a0c3d25b6e4c707144c96cb0350e99 (patch) | |
tree | c980515c68e37f13987d38eefe8a010683e7db6a /storage/myisammrg | |
parent | d440319842e564a727a54d2c44f92104bd96e0de (diff) | |
download | mariadb-git-0bef3bb8d0a0c3d25b6e4c707144c96cb0350e99.tar.gz |
cleanup: remove Item::intro_version
and partition_info::set_show_version_string - they were
already broken and impossible to maintain
Diffstat (limited to 'storage/myisammrg')
-rw-r--r-- | storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff b/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff index 01bf3702a3f..22e3447e00a 100644 --- a/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff +++ b/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff @@ -27,8 +27,8 @@ - `c` char(8) DEFAULT NULL, - PRIMARY KEY (`a`) -) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 --/*!50100 PARTITION BY HASH (a) --PARTITIONS 2 */ +- PARTITION BY HASH (a) +-PARTITIONS 2 -INSERT INTO t1 (c) VALUES ('a'),('b'),('c'); -SHOW CREATE TABLE t1; -Table Create Table @@ -37,8 +37,8 @@ - `c` char(8) DEFAULT NULL, - PRIMARY KEY (`a`) -) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 --/*!50100 PARTITION BY HASH (a) --PARTITIONS 2 */ +- PARTITION BY HASH (a) +-PARTITIONS 2 -TRUNCATE TABLE t1; -SHOW CREATE TABLE t1; -Table Create Table @@ -47,8 +47,8 @@ - `c` char(8) DEFAULT NULL, - PRIMARY KEY (`a`) -) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 --/*!50100 PARTITION BY HASH (a) --PARTITIONS 2 */ +- PARTITION BY HASH (a) +-PARTITIONS 2 -INSERT INTO t1 (c) VALUES ('d'); -SHOW CREATE TABLE t1; -Table Create Table @@ -57,8 +57,8 @@ - `c` char(8) DEFAULT NULL, - PRIMARY KEY (`a`) -) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 --/*!50100 PARTITION BY HASH (a) --PARTITIONS 2 */ +- PARTITION BY HASH (a) +-PARTITIONS 2 -SELECT a,c FROM t1; -a c -1 d |