~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to mysql-test/t/rpl_locale.test

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Replication of locale variables
 
2
 
 
3
source include/master-slave.inc;
 
4
 
 
5
#
 
6
# Bug#22645 LC_TIME_NAMES: Statement not replicated
 
7
#
 
8
connection master;
 
9
create table t1 (s1 char(10));
 
10
set lc_time_names= 'de_DE';
 
11
insert into t1 values (date_format('2001-01-01','%W'));
 
12
set lc_time_names= 'en_US';
 
13
insert into t1 values (date_format('2001-01-01','%W'));
 
14
select * from t1;
 
15
sync_slave_with_master;
 
16
connection slave;
 
17
select * from t1;
 
18
connection master;
 
19
drop table t1;
 
20
sync_slave_with_master;
 
21
 
 
22
# End of 4.1 tests
 
23
 
 
24