summaryrefslogtreecommitdiff
path: root/mysql-test/suite/versioning
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-11-10 09:03:28 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2022-11-10 09:03:28 +0200
commitf82f8fac94f11e94f94ac1a39e65446bf9710638 (patch)
tree3836cfa1b70998663ae08d691b808557c35023d0 /mysql-test/suite/versioning
parent0feb9d364bbb9c371d8f0003a43c479826a2085f (diff)
downloadmariadb-git-f82f8fac94f11e94f94ac1a39e65446bf9710638.tar.gz
Revert "MDEV-29841 More descriptive text for ER_PARTITION_WRONG_TYPE"
This reverts commit 6f8fb41f213dd34b43ef6f3819b4be12f6b26c01 because it broke cmake -DPLUGIN_PARTITION=NO
Diffstat (limited to 'mysql-test/suite/versioning')
-rw-r--r--mysql-test/suite/versioning/r/partition.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/versioning/r/partition.result b/mysql-test/suite/versioning/r/partition.result
index 8cc855d92f8..8cd6e97f2d4 100644
--- a/mysql-test/suite/versioning/r/partition.result
+++ b/mysql-test/suite/versioning/r/partition.result
@@ -150,7 +150,7 @@ partition by system_time limit 1;
alter table t1 change x big int;
create or replace table t1 (i int) engine myisam partition by hash(i) partitions 2;
alter table t1 add partition (partition px history);
-ERROR HY000: Wrong partition type `SYSTEM_TIME` for partitioning by `HASH`
+ERROR HY000: Wrong partitioning type, expected type: `SYSTEM_TIME`
## INSERT, UPDATE, DELETE
create or replace table t1 (x int)
with system versioning
@@ -1105,7 +1105,7 @@ drop table t1;
create table t1 (a int) with system versioning partition by system_time
(partition p1 history, partition pn current);
alter table t1 add partition (partition p2);
-ERROR HY000: Wrong partition type `HASH` for partitioning by `SYSTEM_TIME`
+ERROR HY000: Wrong partitioning type, expected type: `SYSTEM_TIME`
# MDEV-17891 Assertion failures in select_insert::abort_result_set and
# mysql_load upon attempt to replace into a full table
set @@max_heap_table_size= 1024*1024;