diff options
Diffstat (limited to 'mysql-test/main/check_constraint_innodb.result')
-rw-r--r-- | mysql-test/main/check_constraint_innodb.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/main/check_constraint_innodb.result b/mysql-test/main/check_constraint_innodb.result new file mode 100644 index 00000000..4b412491 --- /dev/null +++ b/mysql-test/main/check_constraint_innodb.result @@ -0,0 +1,9 @@ +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. Try ALGORITHM=COPY +connection default; +alter table t1 add primary key (a); +drop table t1; +disconnect con1; |