mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-34679 ER_BAD_FIELD uses non-localizable substrings
This commit is contained in:
@@ -15,17 +15,17 @@ SELECT @session_start_value;
|
||||
latin1
|
||||
'#--------------------FN_DYNVARS_011_01------------------#'
|
||||
SELECT character_set_connection;
|
||||
ERROR 42S22: Unknown column 'character_set_connection' in 'field list'
|
||||
ERROR 42S22: Unknown column 'character_set_connection' in 'SELECT'
|
||||
SET character_set_connection=utf8;
|
||||
SELECT @@session.character_set_connection;
|
||||
@@session.character_set_connection
|
||||
utf8mb3
|
||||
SET session character_set_connection=utf8;
|
||||
SELECT session character_set_connection;
|
||||
ERROR 42S22: Unknown column 'session' in 'field list'
|
||||
ERROR 42S22: Unknown column 'session' in 'SELECT'
|
||||
SET global character_set_connection=utf8;
|
||||
SELECT global character_set_connection;
|
||||
ERROR 42S22: Unknown column 'global' in 'field list'
|
||||
ERROR 42S22: Unknown column 'global' in 'SELECT'
|
||||
'#--------------------FN_DYNVARS_011_02-------------------------#'
|
||||
SET @@character_set_connection = latin5;
|
||||
SET @@character_set_connection = DEFAULT;
|
||||
@@ -69,7 +69,7 @@ res
|
||||
1
|
||||
'#--------------------FN_DYNVARS_011_05-------------------------#'
|
||||
SET @@character_set_connection = utf8 + latin2;
|
||||
ERROR 42S22: Unknown column 'utf8' in 'field list'
|
||||
ERROR 42S22: Unknown column 'utf8' in 'SET'
|
||||
'#--------------------FN_DYNVARS_011_06-------------------------#'
|
||||
SET @@session.character_set_connection = big5;
|
||||
SELECT @@session.character_set_connection;
|
||||
|
Reference in New Issue
Block a user