~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/732849.result

  • Committer: Monty Taylor
  • Date: 2011-03-11 18:48:55 UTC
  • mfrom: (2228.1.8 build)
  • Revision ID: mordred@inaugust.com-20110311184855-1essd3a6xfr7lx6r
Merged Andrew: drizzledump and docs bug fixes
Merged Barry: pbms bugfixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (a text, b int, key ab (a(10),b));
 
3
 
 
4
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
5
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
6
CREATE TABLE `t1` (
 
7
  `a` TEXT COLLATE utf8_general_ci DEFAULT NULL,
 
8
  `b` INT DEFAULT NULL,
 
9
  KEY `ab` (`a`(10),`b`)
 
10
) ENGINE='InnoDB' COLLATE='utf8_general_ci';
 
11
 
 
12
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
13
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
14
DROP TABLE t1;