~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/truncate.result

enable truncate test

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;