1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-11 15:22:09 +03:00

New SQL variables "collation_server" and "collation_database"

This commit is contained in:
bar@bar.mysql.r18.ru
2003-09-15 16:31:04 +05:00
parent 8d05911df0
commit 1d20c09ce9
9 changed files with 126 additions and 30 deletions

View File

@ -401,10 +401,13 @@ struct system_variables
my_bool new_mode;
my_bool old_passwords;
CHARSET_INFO *character_set_server;
CHARSET_INFO *character_set_database;
/* Only charset part of these variables is sensible */
CHARSET_INFO *character_set_client;
CHARSET_INFO *character_set_results;
/* Both charset and collation parts of these variables are important */
CHARSET_INFO *collation_server;
CHARSET_INFO *collation_database;
CHARSET_INFO *collation_connection;
};