~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/truncate.result

  • Committer: Andrew Hutchings
  • Date: 2011-01-10 16:11:45 UTC
  • mto: (2069.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2070.
  • Revision ID: andrew@linuxjedi.co.uk-20110110161145-isdc0ncbo2hx2n5c
Fix pandora error message

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: Unknown table 'test.t1'
 
17
ERROR 42S02: Table 'test.t1' doesn't exist
18
18
create temporary table t1 (n int);
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: Unknown table 'test.non_existing_table'
 
25
ERROR 42S02: Table 'test.non_existing_table' doesn't exist
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;