blob: 39c13b028ccce2342fae3bc642c1561a3806a151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Test of truncate
#
create table t1 (a integer, b integer,c1 CHAR(10));
truncate t1;
select count(*) from t1;
insert into t1 values(1,2,"test");
select count(*) from t1;
drop table t1;
# The following should fail
!$1146 select count(*) from t1;
|