~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/std_data/mysqlmigrate_databases.dat

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE t1 (a int, b char(10)) ENGINE=MyISAM;
2
 
CREATE TABLE t2 (a int, b char(10)) ENGINE=MyISAM;
3
 
INSERT INTO t1 VALUES (1,'Jen'),(2,'Roy'),(3,'Moss');
4
 
INSERT INTO t2 VALUES (1,'Vince'),(2,'Howard'),(3,'Naboo'),(4,'Bollo'),(5,'Bob Fossil');
5
 
CREATE TABLE drizzledump_migrate_test2.t1 (a int, b char(10)) ENGINE=MyISAM;
6
 
CREATE TABLE drizzledump_migrate_test2.t2 (a int, b char(10)) ENGINE=MyISAM;
7
 
INSERT INTO drizzledump_migrate_test2.t1 VALUES (1,'Jen'),(2,'Moss');
8
 
INSERT INTO drizzledump_migrate_test2.t2 VALUES (1,'Naboo'),(2,'Bollo');
9
 
CREATE TABLE drizzledump_migrate_test3.not_on_drizzle(a char(50)) ENGINE=MyISAM; 
10
 
INSERT INTO drizzledump_migrate_test3.not_on_drizzle VALUES ('You shouldnt see this on Drizzle');