summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t
diff options
context:
space:
mode:
authorNikita Malyavin <nikitamalyavin@gmail.com>2020-01-10 23:17:38 +1000
committerSergei Golubchik <serg@mariadb.org>2020-03-31 17:42:34 +0200
commite6af62189e4b2979b5d9b6628d71407f45fea751 (patch)
tree32d4014f0597af0d54f8818b6c2b5d8451e9f13a /mysql-test/suite/rpl/t
parent3bef8482268571bd2749c9e69465273ffe0ff4dc (diff)
downloadmariadb-git-e6af62189e4b2979b5d9b6628d71407f45fea751.tar.gz
unify "partitioning cannot do X" error messages
Diffstat (limited to 'mysql-test/suite/rpl/t')
-rw-r--r--mysql-test/suite/rpl/t/rpl_create_or_replace_fail.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/t/rpl_create_or_replace_fail.test b/mysql-test/suite/rpl/t/rpl_create_or_replace_fail.test
index e75f34b0b56..8624d3c9f1b 100644
--- a/mysql-test/suite/rpl/t/rpl_create_or_replace_fail.test
+++ b/mysql-test/suite/rpl/t/rpl_create_or_replace_fail.test
@@ -38,7 +38,7 @@ CREATE TEMPORARY TABLE t1 (a INT NOT NULL);
--error ER_NO_SUCH_TABLE
LOAD DATA INFILE 'x' INTO TABLE x;
---error ER_PARTITION_NO_TEMPORARY
+--error ER_FEATURE_NOT_SUPPORTED_WITH_PARTITIONING
CREATE OR REPLACE TEMPORARY TABLE t1 (x INT) PARTITION BY HASH(x);
--echo "************** DROP TEMPORARY TABLE Should be present in Binary log **************"