summaryrefslogtreecommitdiff
path: root/mysql-test/suite/storage_engine/parts/truncate_table.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2017-07-13 07:21:21 +0400
committerAlexander Barkov <bar@mariadb.org>2017-07-13 07:21:21 +0400
commit29acdcd5427e13bc3aefbbeee17b42bfe23dea84 (patch)
treef8f5365594c3b43e01891b7017f47fa6b934c646 /mysql-test/suite/storage_engine/parts/truncate_table.result
parente33bda183e80ff63a984ed2a938467950b23a3fd (diff)
parentdaec0004502a1f8c2ff7d46de92a61b5c4da1d6c (diff)
downloadmariadb-git-29acdcd5427e13bc3aefbbeee17b42bfe23dea84.tar.gz
Merge remote-tracking branch 'origin/bb-10.2-ext' into 10.3MDEV-9804
Conflicts: VERSION debian/mariadb-backup-10.2.files debian/mariadb-backup-10.2.install debian/mariadb-backup-10.3.files mysql-test/unstable-tests
Diffstat (limited to 'mysql-test/suite/storage_engine/parts/truncate_table.result')
-rw-r--r--mysql-test/suite/storage_engine/parts/truncate_table.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/suite/storage_engine/parts/truncate_table.result b/mysql-test/suite/storage_engine/parts/truncate_table.result
index fc409b805e2..bfbca529200 100644
--- a/mysql-test/suite/storage_engine/parts/truncate_table.result
+++ b/mysql-test/suite/storage_engine/parts/truncate_table.result
@@ -14,7 +14,7 @@ t1 CREATE TABLE `t1` (
`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;
@@ -24,7 +24,7 @@ t1 CREATE TABLE `t1` (
`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;
@@ -34,7 +34,7 @@ t1 CREATE TABLE `t1` (
`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;
@@ -44,7 +44,7 @@ t1 CREATE TABLE `t1` (
`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