~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2011-03-12 19:26:59 UTC
  • mfrom: (2231.1.2 build)
  • Revision ID: kalebral@gmail.com-20110312192659-7gea5egdp0y06nfk
Merge Patrick - add suite to test drizzledump
Merge Patrick - 732061: need a way to execute dtr test cases with the slave plugin

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 COMMENT '.'
 
11
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
12
SHOW CREATE TABLE drizzledump_migrate_test.t2;
 
13
Table   Create Table
 
14
t2      CREATE TABLE `t2` (
 
15
  `a` INT DEFAULT NULL COMMENT 'This is a pretty long comment so we can see how drizzledump will handle this'
 
16
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
17
SHOW CREATE TABLE drizzledump_migrate_test.t3;
 
18
Table   Create Table
 
19
t3      CREATE TABLE `t3` (
 
20
  `a` INT DEFAULT NULL
 
21
) ENGINE=InnoDB COMMENT='.' COLLATE = utf8_general_ci
 
22
SHOW CREATE TABLE drizzledump_migrate_test.t4;
 
23
Table   Create Table
 
24
t4      CREATE TABLE `t4` (
 
25
  `a` INT DEFAULT NULL
 
26
) ENGINE=InnoDB COMMENT='This is a longish table comment so we can test drizzledumps ' COLLATE = utf8_general_ci
 
27
SHOW CREATE TABLE drizzledump_migrate_test.t5;
 
28
Table   Create Table
 
29
t5      CREATE TABLE `t5` (
 
30
  `a` INT DEFAULT NULL COMMENT 'Now we test column + table comments'
 
31
) ENGINE=InnoDB COMMENT='Now we test table + column comments' COLLATE = utf8_general_ci
 
32
Dropping test database on MySQL...
 
33
DROP SCHEMA drizzledump_migrate_test ;