~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/show_check.result

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

Show diffs side-by-side

added added

removed removed

Lines of Context:
328
328
CREATE TEMPORARY TABLE t1 (
329
329
a int default NULL,
330
330
KEY a USING BTREE (a)
331
 
) ENGINE=HEAP;
 
331
) ENGINE=MEMORY;
332
332
CREATE TEMPORARY TABLE t2 (
333
333
b int default NULL,
334
334
index(b)
335
 
) ENGINE=HEAP;
 
335
) ENGINE=MEMORY;
336
336
CREATE TEMPORARY TABLE t3 (
337
337
a int default NULL,
338
338
b int default NULL,
339
339
KEY a USING BTREE (a),
340
340
index(b)
341
 
) ENGINE=HEAP;
 
341
) ENGINE=MEMORY;
342
342
insert into t1 values (1),(2);
343
343
insert into t2 values (1),(2);
344
344
insert into t3 values (1,1),(2,2);