2000-12-28 02:56:38 +01:00
|
|
|
#
|
|
|
|
# Test of truncate
|
|
|
|
#
|
2003-01-06 00:48:59 +01:00
|
|
|
--disable_warnings
|
2002-08-30 17:39:42 +02:00
|
|
|
drop table if exists t1;
|
2003-01-06 00:48:59 +01:00
|
|
|
--enable_warnings
|
|
|
|
|
2000-12-28 02:56:38 +01:00
|
|
|
create table t1 (a integer, b integer,c1 CHAR(10));
|
2001-09-03 04:16:15 +02:00
|
|
|
insert into t1 (a) values (1),(2);
|
2001-02-02 02:47:06 +01:00
|
|
|
truncate table t1;
|
2000-12-28 02:56:38 +01:00
|
|
|
select count(*) from t1;
|
|
|
|
insert into t1 values(1,2,"test");
|
|
|
|
select count(*) from t1;
|
2001-09-03 04:16:15 +02:00
|
|
|
delete from t1;
|
|
|
|
select * from t1;
|
2000-12-28 02:56:38 +01:00
|
|
|
drop table t1;
|
|
|
|
# The following should fail
|
2001-09-03 04:16:15 +02:00
|
|
|
--error 1146
|
|
|
|
select count(*) from t1;
|
2002-04-09 02:20:24 +02:00
|
|
|
create temporary table t1 (n int);
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
truncate table t1;
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
2002-08-05 10:45:39 +02:00
|
|
|
--error 1146
|
|
|
|
truncate non_existing_table;
|
2003-12-12 21:26:58 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# test autoincrement with TRUNCATE
|
|
|
|
#
|
|
|
|
|
|
|
|
create table t1 (a integer auto_increment primary key);
|
|
|
|
insert into t1 (a) values (NULL),(NULL);
|
|
|
|
truncate table t1;
|
|
|
|
insert into t1 (a) values (NULL),(NULL);
|
|
|
|
SELECT * from t1;
|
|
|
|
drop table t1;
|
|
|
|
|