summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_locale.test
diff options
context:
space:
mode:
authorbar@mysql.com/bar.intranet.mysql.r18.ru <>2006-12-07 09:31:53 +0400
committerbar@mysql.com/bar.intranet.mysql.r18.ru <>2006-12-07 09:31:53 +0400
commitb66f34bd19bb5a6c32e84bf86f9af56df0f0e99b (patch)
tree39292b039b689d83b3dd56224b5c49aa033e7702 /mysql-test/t/rpl_locale.test
parent7c1b675e721ce3775a342dc7e812c0a1a1c06fb2 (diff)
downloadmariadb-git-b66f34bd19bb5a6c32e84bf86f9af56df0f0e99b.tar.gz
Bug#22645 LC_TIME_NAMES: Statement not replicated
Implementing event based replication of LC_TIME_NAMES for 5.0 (as a replacement of previously made ONE_SHOT replication)
Diffstat (limited to 'mysql-test/t/rpl_locale.test')
-rw-r--r--mysql-test/t/rpl_locale.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_locale.test b/mysql-test/t/rpl_locale.test
index 530a3d77636..2f2d637e1b4 100644
--- a/mysql-test/t/rpl_locale.test
+++ b/mysql-test/t/rpl_locale.test
@@ -9,6 +9,8 @@ connection master;
create table t1 (s1 char(10));
set lc_time_names= 'de_DE';
insert into t1 values (date_format('2001-01-01','%W'));
+set lc_time_names= 'en_US';
+insert into t1 values (date_format('2001-01-01','%W'));
select * from t1;
sync_slave_with_master;
connection slave;