~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/issue_533.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
DROP DATABASE IF EXISTS onlythisdb;
 
2
CREATE DATABASE onlythisdb;
 
3
USE onlythisdb;
 
4
CREATE TABLE t (
 
5
  i INT,
 
6
  UNIQUE INDEX (i)
 
7
);
 
8
INSERT INTO onlythisdb.t VALUES (1), (2), (3);