~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2011-04-04 21:37:55 UTC
  • mfrom: (2241.6.2 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2268.
  • Revision ID: brian@tangent.org-20110404213755-k4kl3qd5fkbvjmhe
Merge in owner tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1474
1474
  `STATE` VARCHAR(256) DEFAULT NULL,
1475
1475
  `INFO` VARCHAR(100) DEFAULT NULL,
1476
1476
  `HAS_GLOBAL_LOCK` BOOLEAN NOT NULL
1477
 
) ENGINE=InnoDB COLLATE = utf8_general_ci REPLICATE = FALSE
 
1477
) ENGINE=InnoDB COLLATE = utf8_general_ci REPLICATE = FALSE DEFINER SYSTEM
1478
1478
drop table t1;
1479
1479
create temporary table t1 like data_dictionary.processlist;
1480
1480
Got one of the listed errors
1491
1491
  `STATE` VARCHAR(256) DEFAULT NULL,
1492
1492
  `INFO` VARCHAR(100) DEFAULT NULL,
1493
1493
  `HAS_GLOBAL_LOCK` BOOLEAN NOT NULL
1494
 
) ENGINE=MyISAM COLLATE = utf8_general_ci REPLICATE = FALSE
 
1494
) ENGINE=MyISAM COLLATE = utf8_general_ci REPLICATE = FALSE DEFINER SYSTEM
1495
1495
drop table t1;
1496
1496
 
1497
1497
# --