~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_locale.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
create table t1 (s1 char(10));
 
8
set lc_time_names= 'de_DE';
 
9
insert into t1 values (date_format('2001-01-01','%W'));
 
10
set lc_time_names= 'en_US';
 
11
insert into t1 values (date_format('2001-01-01','%W'));
 
12
select * from t1;
 
13
s1
 
14
Montag
 
15
Monday
 
16
select * from t1;
 
17
s1
 
18
Montag
 
19
Monday
 
20
drop table t1;