mirror of
https://github.com/MariaDB/server.git
synced 2025-10-27 05:56:07 +03:00
BUILD/compile-pentium-debug-max: Removed -DBIG_TABLES because of problems with gdb 5.3 sql/set_var.cc: SET CHARACTER SET DEFAULT didn't work sql/set_var.h: SET CHARACTER SET DEFAULT didn't work
12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
# Test of character set conversions
|
|
|
|
# Test that SET DEFAULT works
|
|
|
|
select @@convert_character_set;
|
|
select @@global.convert_character_set;
|
|
show variables like "%convert_character_set%";
|
|
SET CHARACTER SET cp1251_koi8;
|
|
select @@convert_character_set;
|
|
SET CHARACTER SET DEFAULT;
|
|
select @@convert_character_set;
|