~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/temp_table.result

  • Committer: Monty Taylor
  • Date: 2010-10-02 05:07:25 UTC
  • mto: (1817.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1818.
  • Revision ID: mordred@inaugust.com-20101002050725-h1b30b0nr3leeoh1
Embed a modified version of parse_config_file. There are several more bugs
that we'll want to fix in it, and then submit upstream. Eventually we should
be able to remove this- but for now the version on lucid is completely
broken.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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);
29
 
ERROR 42S01: Table 't1' already exists
 
29
ERROR 42S01: Table 'test.#t1' already exists
30
30
ALTER TABLE t1 RENAME t2;
31
 
ERROR 42S01: Table 't2' already exists
 
31
ERROR 42S01: Table 'test.#t2' already exists
32
32
select * from t2;
33
33
a       b
34
34
4       e