~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/temp_table.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:
21
21
4       e
22
22
5       f
23
23
6       g
24
 
create TEMPORARY TABLE t2 engine=heap select * from t1;
25
 
create TEMPORARY TABLE IF NOT EXISTS t2 (a int) engine=heap;
 
24
create TEMPORARY TABLE t2 engine=MEMORY select * from t1;
 
25
create TEMPORARY TABLE IF NOT EXISTS t2 (a int) engine=MEMORY;
26
26
Warnings:
27
27
Note    1050    Table 't2' already exists
28
28
CREATE TEMPORARY TABLE t1 (a int not null, b char (10) not null);