~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/truncate.result

  • Committer: Monty Taylor
  • Date: 2009-09-30 07:01:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090930070132-b1ol1xu1rpajdddy
Small namespace cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
3
54
54
4
55
55
drop table t1;
56
 
create table t1 (s1 int);
57
 
insert into t1 (s1) values (1), (2), (3), (4), (5);
58
 
create view v1 as select * from t1;
59
 
truncate table v1;
60
 
ERROR 42S02: Table 'test.v1' doesn't exist
61
 
drop view v1;
62
 
drop table t1;