1# This file sets the default character set that most test expects.
2
3# In most cases the variables should match the community server defaults.
4# The values should be changed if the default character set for the server
5# changes and all tests have been updated to supported the new character set
6
7# The purpose if this file is to allow users to change these defaults
8# without having to update all tests.
9
10--disable_query_log
11SET @save_character_set_server= @@character_set_server;
12SET @save_collation_server= @@collation_server;
13set @@character_set_server="latin1";
14set @@collation_server="latin1_swedish_ci";
15--enable_query_log
16