~percona-toolkit-dev/percona-toolkit/mysql-5.6-test-fixes

« back to all changes in this revision

Viewing changes to t/pt-table-sync/samples/before.sql

  • Committer: Daniel Nichter
  • Date: 2011-06-24 22:02:05 UTC
  • Revision ID: daniel@percona.com-20110624220205-e779cao9hcwyly1w
Add forked Maatkit tools in bin/ and their tests in t/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use test;
 
2
 
 
3
drop table if exists test1;
 
4
drop table if exists test2;
 
5
 
 
6
create table test1(
 
7
   a int not null,
 
8
   b char(2) not null,
 
9
   primary key(a, b)
 
10
) ENGINE=INNODB;
 
11
 
 
12
create table test2(
 
13
   a int not null,
 
14
   b char(2) not null,
 
15
   primary key(a, b)
 
16
) ENGINE=INNODB;
 
17
 
 
18
insert into test1 values(1, 'en'), (2, 'ca');
 
19
 
 
20
drop table if exists test3, test4;
 
21
create table test3 (
 
22
  id int not null primary key,
 
23
  name varchar(255)
 
24
);
 
25
create table test4 (
 
26
  id int not null primary key,
 
27
  name varchar(255)
 
28
);
 
29
insert into test3(id, name) values(15034, '51707'),(1, '001');
 
30
insert into test4(id, name) values(15034, '051707'),(1, '1');