truncate test made independed from environment

This commit is contained in:
bell@sanja.is.com.ua 2002-08-30 18:39:42 +03:00
parent 5ec7991dbb
commit 76aff6352f
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
drop table if exists t1;
create table t1 (a integer, b integer,c1 CHAR(10));
insert into t1 (a) values (1),(2);
truncate table t1;

View File

@ -1,6 +1,7 @@
#
# Test of truncate
#
drop table if exists t1;
create table t1 (a integer, b integer,c1 CHAR(10));
insert into t1 (a) values (1),(2);
truncate table t1;