~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/tests/r/truncate.result

  • Committer: Monty Taylor
  • Date: 2011-02-15 03:57:13 UTC
  • mfrom: (2168.1.7 build)
  • Revision ID: mordred@inaugust.com-20110215035713-w41jt6izr5r8e8lq
Merge Haildb fixes from Stewart and various small build cleanups from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
a       b       c1
15
15
drop table t1;
16
16
select count(*) from t1;
17
 
ERROR 42S02: Table 'test.t1' doesn't exist
 
17
ERROR 42S02: Unknown table 'test.t1'
18
18
create table t1 (n int primary key);
19
19
insert into t1 values (1),(2),(3);
20
20
truncate table t1;
22
22
n
23
23
drop table t1;
24
24
truncate non_existing_table;
25
 
ERROR 42S02: Table 'test.non_existing_table' doesn't exist
 
25
ERROR 42S02: Unknown table 'test.non_existing_table'
26
26
create table t1 (a integer auto_increment primary key);
27
27
insert into t1 (a) values (NULL),(NULL);
28
28
truncate table t1;