56
# Test for Bug#5507 "TRUNCATE should work with views"
58
# when it'll be fixed, the error should become 1347
59
# (test.v1' is not BASE TABLE)
62
create table t1 (s1 int);
63
insert into t1 (s1) values (1), (2), (3), (4), (5);
64
create view v1 as select * from t1;