~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

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

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

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 ;