~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/mysql_migrate/r/basic.result

  • Committer: patrick crews
  • Date: 2011-01-03 22:05:17 UTC
  • mto: (2231.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2232.
  • Revision ID: gleebix@gmail.com-20110103220517-dr1hiugmlp29msn3
Updated test and result files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP SCHEMA IF EXISTS drizzledump_migrate_test;
 
2
Dropping test database on MySQL...
 
3
Create test database on MySQL...
 
4
populating MySQL with test data...
 
5
calling drizzledump to populate Drizzle...
 
6
test our table:
 
7
SHOW CREATE TABLE drizzledump_migrate_test.t1;
 
8
Table   Create Table
 
9
t1      CREATE TABLE `t1` (
 
10
  `a` INT DEFAULT NULL
 
11
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
12
SELECT * FROM drizzledump_migrate_test.t1;
 
13
a
 
14
1
 
15
3
 
16
5
 
17
7
 
18
9
 
19
Dropping test database on MySQL...
 
20
DROP SCHEMA drizzledump_migrate_test;