~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/rpl_ignore_table_update.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

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
use test;
 
8
drop table if exists mysqltest_foo;
 
9
drop table if exists mysqltest_bar;
 
10
create table mysqltest_foo (n int);
 
11
insert into mysqltest_foo values(4);
 
12
use test;
 
13
create table mysqltest_foo (n int);
 
14
insert into mysqltest_foo values(5);
 
15
create table mysqltest_bar (m int);
 
16
insert into mysqltest_bar values(15);
 
17
create table t1 (k int);
 
18
insert into t1 values(55);
 
19
select mysqltest_foo.n,mysqltest_bar.m,t1.k from mysqltest_foo,mysqltest_bar,t1;
 
20
n       m       k
 
21
4       15      55
 
22
drop table mysqltest_foo,mysqltest_bar,t1;
 
23
drop table mysqltest_foo,mysqltest_bar,t1;