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

« back to all changes in this revision

Viewing changes to t/pt-archiver/samples/tables7-9.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
-- This table and table_8/9 designed to check that ON DUPLICATE KEY UPDATE can
 
4
-- work okay with the before_insert functionality.
 
5
 
 
6
drop table if exists table_7;
 
7
create table table_7(
 
8
   a int not null,
 
9
   b int not null,
 
10
   c int not null,
 
11
   primary key(a, b)
 
12
) type=innodb;
 
13
 
 
14
drop table if exists table_8;
 
15
create table table_8 like table_7;
 
16
 
 
17
drop table if exists table_9;
 
18
create table table_9(
 
19
   a int not null primary key,
 
20
   b int not null,
 
21
   c int not null
 
22
) type=innodb;
 
23
 
 
24
insert into table_7(a, b, c) values
 
25
   (1, 2, 1),
 
26
   (1, 3, 5);
 
27