summaryrefslogtreecommitdiff
path: root/storage/myisammrg
diff options
context:
space:
mode:
authorElena Stepanova <elenst@montyprogram.com>2017-07-10 00:05:45 +0300
committerElena Stepanova <elenst@montyprogram.com>2017-07-10 00:05:45 +0300
commit5ff2db7f67401511b30dbd3fc69a1ea87d7e8cc4 (patch)
tree47f3a7e9649e3e1a6767b530ed0144584c26ba5c /storage/myisammrg
parent4df726e1801907d7f3c68ed760c0c8f4df73998b (diff)
downloadmariadb-git-5ff2db7f67401511b30dbd3fc69a1ea87d7e8cc4.tar.gz
Follow-up for MDEV-13089 (identifier quoting in partitioning)mariadb-10.2.7
Adjust results for storage_engine tests
Diffstat (limited to 'storage/myisammrg')
-rw-r--r--storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff8
1 files changed, 4 insertions, 4 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 22e3447e00a..9ba985f7adc 100644
--- a/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff
+++ b/storage/myisammrg/mysql-test/storage_engine/parts/truncate_table.rdiff
@@ -27,7 +27,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
-- PARTITION BY HASH (a)
+- PARTITION BY HASH (`a`)
-PARTITIONS 2
-INSERT INTO t1 (c) VALUES ('a'),('b'),('c');
-SHOW CREATE TABLE t1;
@@ -37,7 +37,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
-- PARTITION BY HASH (a)
+- PARTITION BY HASH (`a`)
-PARTITIONS 2
-TRUNCATE TABLE t1;
-SHOW CREATE TABLE t1;
@@ -47,7 +47,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
-- PARTITION BY HASH (a)
+- PARTITION BY HASH (`a`)
-PARTITIONS 2
-INSERT INTO t1 (c) VALUES ('d');
-SHOW CREATE TABLE t1;
@@ -57,7 +57,7 @@
- `c` char(8) DEFAULT NULL,
- PRIMARY KEY (`a`)
-) ENGINE=<STORAGE_ENGINE> AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
-- PARTITION BY HASH (a)
+- PARTITION BY HASH (`a`)
-PARTITIONS 2
-SELECT a,c FROM t1;
-a c