1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Better error messages for not nullable

SET character_set_xxx=NULL
and
SET collation_xxx=NULL
This commit is contained in:
bar@bar.intranet.mysql.r18.ru
2004-03-29 18:33:24 +05:00
parent 11f14e0050
commit 928e796e67
3 changed files with 13 additions and 2 deletions

View File

@@ -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