From 76aff6352f8f8d1ce9c0cb9ad7ebb1104dea8412 Mon Sep 17 00:00:00 2001 From: "bell@sanja.is.com.ua" <> Date: Fri, 30 Aug 2002 18:39:42 +0300 Subject: [PATCH] truncate test made independed from environment --- mysql-test/r/truncate.result | 1 + mysql-test/t/truncate.test | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/r/truncate.result b/mysql-test/r/truncate.result index 44dacdd9bf1..ad390c9fa92 100644 --- a/mysql-test/r/truncate.result +++ b/mysql-test/r/truncate.result @@ -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; diff --git a/mysql-test/t/truncate.test b/mysql-test/t/truncate.test index 841ce06351e..eeb79f497fa 100644 --- a/mysql-test/t/truncate.test +++ b/mysql-test/t/truncate.test @@ -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;