summaryrefslogtreecommitdiff
path: root/mysql-test/r/bdb.result
diff options
context:
space:
mode:
authorunknown <ram@gw.mysql.r18.ru>2004-06-29 13:49:50 +0500
committerunknown <ram@gw.mysql.r18.ru>2004-06-29 13:49:50 +0500
commit1e8251ac679cce3e9e10712e5d116f91ebdfc7c3 (patch)
tree8ca0126a14b1c813870c3fb45d1380748b45f63c /mysql-test/r/bdb.result
parent7e970e35a694f235c866e40182269bf87b6d6e09 (diff)
downloadmariadb-git-1e8251ac679cce3e9e10712e5d116f91ebdfc7c3.tar.gz
a fix (bug #4304: TRUNCATE <table of type BDB> , wrong result).
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r--mysql-test/r/bdb.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result
index cc6a974b192..87bc36fb215 100644
--- a/mysql-test/r/bdb.result
+++ b/mysql-test/r/bdb.result
@@ -1210,3 +1210,10 @@ a b
3 three
4 four
drop table t1, t2;
+create table t1 (a int, b varchar(30), primary key(a)) engine = bdb;
+insert into t1 values (1,'one');
+commit;
+truncate t1;
+select * from t1;
+a b
+drop table t1;