~percona-toolkit-dev/percona-toolkit/fix-log-parser-writer-bug-963225

« back to all changes in this revision

Viewing changes to t/lib/samples/mysqldump-no-data/dump001.txt

  • Committer: Daniel Nichter
  • Date: 2011-06-24 17:22:06 UTC
  • Revision ID: daniel@percona.com-20110624172206-c7q4s4ad6r260zz6
Add lib/, t/lib/, and sandbox/.  All modules are updated and passing on MySQL 5.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--
 
2
-- This is just a very simple, fake dump that is used to test SchemaQualifier.
 
3
-- What's important is the duplicate column names c1 and c2 and the duplicate
 
4
-- table names, test.a and test2.a.
 
5
--
 
6
-- Host: localhost    Database: test
 
7
 
 
8
CREATE TABLE `a` (
 
9
  `c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
 
10
  `c2` varchar(45) NOT NULL
 
11
);
 
12
 
 
13
CREATE TABLE `b` (
 
14
  `c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
 
15
  `c2` varchar(45) NOT NULL,
 
16
  `c3` varchar(45) NOT NULL,
 
17
);
 
18
 
 
19
-- Host: localhost    Database: test2
 
20
 
 
21
CREATE TABLE `a` (
 
22
  `c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
 
23
  `c2` varchar(45) NOT NULL
 
24
);