diff options
author | unknown <bar@bar.intranet.mysql.r18.ru> | 2004-03-29 18:33:24 +0500 |
---|---|---|
committer | unknown <bar@bar.intranet.mysql.r18.ru> | 2004-03-29 18:33:24 +0500 |
commit | 399845aeddfdc6f6cc9762fe55afee20444706af (patch) | |
tree | 7fc48402cfca442977ac848a9b63af8563851f2d /mysql-test/t/variables.test | |
parent | 5babbd233b88d547b9642ac029c7b24113e709c1 (diff) | |
download | mariadb-git-399845aeddfdc6f6cc9762fe55afee20444706af.tar.gz |
Better error messages for not nullable
SET character_set_xxx=NULL
and
SET collation_xxx=NULL
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 26eacb86164..843a417bb25 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -137,6 +137,10 @@ set GLOBAL storage_engine=DEFAULT; set character_set_client=UNKNOWN_CHARACTER_SET; --error 1273 set collation_connection=UNKNOWN_COLLATION; +--error 1231 +set character_set_client=NULL; +--error 1231 +set collation_connection=NULL; --error 1228 set global autocommit=1; --error 1238 |