diff options
author | Elena Stepanova <elenst@montyprogram.com> | 2018-04-25 19:19:44 +0300 |
---|---|---|
committer | Elena Stepanova <elenst@montyprogram.com> | 2018-04-25 19:19:44 +0300 |
commit | 4a3dd18a48e2eb026f16627a909ab18a0fe90a4e (patch) | |
tree | ad020c4e8ea7089755b26983e4badc9aa8d39e95 /mysql-test/t/mdev14864.test | |
parent | ebd8e6807f2b11788b6a743cf88dcb715bec3af9 (diff) | |
download | mariadb-git-bb-10.2-mtr.tar.gz |
Add a test case which is known to fail, to check failure handlingbb-10.2-mtr
Not to be merged to the main tree!
Diffstat (limited to 'mysql-test/t/mdev14864.test')
-rw-r--r-- | mysql-test/t/mdev14864.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/mdev14864.test b/mysql-test/t/mdev14864.test new file mode 100644 index 00000000000..59963cdfc39 --- /dev/null +++ b/mysql-test/t/mdev14864.test @@ -0,0 +1,10 @@ +--source include/have_partition.inc + +CREATE TABLE t1 (t TEXT DEFAULT '') CHARSET=latin1; +ALTER TABLE t1 COLLATE utf8_bin; +--error ER_BAD_FIELD_ERROR +ALTER TABLE t1 PARTITION BY HASH(f); +ALTER TABLE t1 ADD COLUMN i INT; + +# Cleanup +DROP TABLE t1; |