~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/truncate.result

  • Committer: Brian Aker
  • Date: 2011-02-04 10:18:35 UTC
  • mfrom: (2143.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110204101835-j23pv0febg9p0a2p
Merge of all local trees.

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 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: 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;