~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix1.inc

  • Committer: Monty Taylor
  • Date: 2009-01-09 07:02:24 UTC
  • mto: (779.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109070224-prwl5p52mfql3zfw
Split out readline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
CREATE TABLE t1 (
183
183
  a1 decimal(10,0) DEFAULT NULL,
184
184
  a2 blob,
 
185
  a3 time DEFAULT NULL,
185
186
  a4 blob,
186
187
  a5 char(175) DEFAULT NULL,
187
 
  a6 timestamp NOT NULL DEFAULT NOW(),
 
188
  a6 timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
188
189
  a7 blob,
189
190
  INDEX idx (a6,a7(239),a5)
190
191
) ENGINE=InnoDB;