From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/include/default_charset.inc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mysql-test/include/default_charset.inc (limited to 'mysql-test/include/default_charset.inc') diff --git a/mysql-test/include/default_charset.inc b/mysql-test/include/default_charset.inc new file mode 100644 index 00000000..e5c40100 --- /dev/null +++ b/mysql-test/include/default_charset.inc @@ -0,0 +1,15 @@ +# This file sets the default character set that most test expects. + +# In most cases the variables should match the community server defaults. +# The values should be changed if the default character set for the server +# changes and all tests have been updated to supported the new character set + +# The purpose if this file is to allow users to change these defaults +# without having to update all tests. + +--disable_query_log +SET @save_character_set_server= @@character_set_server; +SET @save_collation_server= @@collation_server; +set @@character_set_server="latin1"; +set @@collation_server="latin1_swedish_ci"; +--enable_query_log -- cgit v1.2.3