~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/access/r/definer_test.result

  • Committer: Mark Atwood
  • Date: 2011-09-22 16:00:00 UTC
  • mfrom: (2415.1.2 drizzle-build)
  • Revision ID: me@mark.atwood.name-20110922160000-pdsijwo6zih2t4fb
mergeĀ lp:~brianaker/drizzle/fix-missing-result-file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE A (A SERIAL) DEFINER "mine";
 
2
SHOW CREATE TABLE A;
 
3
Table   Create Table
 
4
A       CREATE TABLE `A` (
 
5
  `A` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
 
6
  UNIQUE KEY `A` (`A`) USING BTREE
 
7
) ENGINE=InnoDB COLLATE = utf8_general_ci DEFINER 'mine'
 
8
DROP TABLE A;