~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/federated/federated_maybe_16324629.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen, Otto Kekäläinen, James Page
  • Date: 2014-03-02 01:38:26 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140302013826-z3afnfteqo86pccd
Tags: 5.5.36-1
[ Otto Kekäläinen ]
* New upstream release.
* Updated Danish debconf translation (Closes: #739750).
* d/control: Added explicit Conflicts/Replaces for mysql-5.6 packages
  (Closes: #739841).
* d/control: Update for use of virtual-* packages for switching to/from
  MySQL alternatives.

[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739360).
* d/control: Add libjemalloc-dev to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Inspired by a bug fix for internal Oracle MySQL bug#16324629
 
3
#
 
4
source include/federated.inc;
 
5
 
 
6
connection slave;
 
7
create table federated.t1 (a int, b int, unique key (a), key (b));
 
8
 
 
9
connection master;
 
10
 
 
11
--replace_result $SLAVE_MYPORT SLAVE_PORT
 
12
eval create table t1 (a int, b int, unique key (a), key (b))
 
13
 engine=federated CONNECTION='mysql://root@127.0.0.1:$SLAVE_MYPORT/federated/t1';
 
14
 
 
15
insert into t1 values (3, 3), (7, 7);
 
16
delete t1 from t1 where a = 3;
 
17
select * from t1;
 
18
drop table t1;
 
19
 
 
20
connection slave;
 
21
connection default;
 
22
source include/federated_cleanup.inc;
 
23