diff options
author | bar@mysql.com <> | 2004-10-28 15:21:20 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-10-28 15:21:20 +0500 |
commit | 541883f9d89a8d38affba60bf9506289a6232da1 (patch) | |
tree | 89a7308e5767cf2511c3186f862a93842a18065d /mysql-test/t/alter_table.test | |
parent | c8ba8c13061a49f66d555fd1ef5810f57da34805 (diff) | |
download | mariadb-git-541883f9d89a8d38affba60bf9506289a6232da1.tar.gz |
Produce a "truncated" warning if a value cannot be converted
into the column character set on INSERT/UPDATE.
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r-- | mysql-test/t/alter_table.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index eb35aa90fe2..e46027ae8d9 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -207,6 +207,7 @@ alter table t1 change a a text character set cp1251; select a,hex(a) from t1; alter table t1 change a a char(10) character set koi8r; select a,hex(a) from t1; +delete from t1; # # Test ALTER TABLE .. CHARACTER SET .. |