summaryrefslogtreecommitdiff
path: root/mysql-test/main/check_constraint_innodb.result
diff options
context:
space:
mode:
authorEugene Kosov <claprix@yandex.ru>2019-04-11 11:49:26 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-04-12 12:28:09 +0300
commit4dc10ec68d354241768ce4779c024b4bb2ca897b (patch)
tree5d35027fb2b4f8d0ef33b02a15d938953c14e7be /mysql-test/main/check_constraint_innodb.result
parenta05f423554d0825997c1ff3de7e49e981e84e882 (diff)
downloadmariadb-git-4dc10ec68d354241768ce4779c024b4bb2ca897b.tar.gz
MDEV-19236 Improve error message for ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE
remove a sometimes misleading word INPLACE from error message
Diffstat (limited to 'mysql-test/main/check_constraint_innodb.result')
-rw-r--r--mysql-test/main/check_constraint_innodb.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/check_constraint_innodb.result b/mysql-test/main/check_constraint_innodb.result
index 45af3f512b7..4b412491204 100644
--- a/mysql-test/main/check_constraint_innodb.result
+++ b/mysql-test/main/check_constraint_innodb.result
@@ -2,7 +2,7 @@ create table t1 (a int, b smallint) engine=innodb;
connect con1,localhost,root,,test;
alter table t1 add constraint check (b < 8);
alter table t1 modify column b int, algorithm=inplace;
-ERROR 0A000: ALGORITHM=INPLACE is not supported. Reason: Cannot change column type INPLACE. Try ALGORITHM=COPY
+ERROR 0A000: ALGORITHM=INPLACE is not supported. Reason: Cannot change column type. Try ALGORITHM=COPY
connection default;
alter table t1 add primary key (a);
drop table t1;