mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
truncate test made independed from environment
This commit is contained in:
@ -1,3 +1,4 @@
|
|||||||
|
drop table if exists t1;
|
||||||
create table t1 (a integer, b integer,c1 CHAR(10));
|
create table t1 (a integer, b integer,c1 CHAR(10));
|
||||||
insert into t1 (a) values (1),(2);
|
insert into t1 (a) values (1),(2);
|
||||||
truncate table t1;
|
truncate table t1;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Test of truncate
|
# Test of truncate
|
||||||
#
|
#
|
||||||
|
drop table if exists t1;
|
||||||
create table t1 (a integer, b integer,c1 CHAR(10));
|
create table t1 (a integer, b integer,c1 CHAR(10));
|
||||||
insert into t1 (a) values (1),(2);
|
insert into t1 (a) values (1),(2);
|
||||||
truncate table t1;
|
truncate table t1;
|
||||||
|
Reference in New Issue
Block a user