summaryrefslogtreecommitdiff
path: root/mysql-test/r/bdb.result
diff options
context:
space:
mode:
authorram@gw.mysql.r18.ru <>2004-06-29 13:51:35 +0500
committerram@gw.mysql.r18.ru <>2004-06-29 13:51:35 +0500
commit6acd105b16da4f825f7be335c36258d8586e10af (patch)
tree35a367784c55e2d7df8719dbd4979a247a8cda31 /mysql-test/r/bdb.result
parent36bf1e71955fa0b51cf3960b82b8a29f07a839ad (diff)
parentc0c1c3200a1dc23e12ef1135f549ad1ec8e524de (diff)
downloadmariadb-git-6acd105b16da4f825f7be335c36258d8586e10af.tar.gz
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1
into gw.mysql.r18.ru:/usr/home/ram/work/4.1.b4089
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 f2846e238e3..25118702d09 100644
--- a/mysql-test/r/bdb.result
+++ b/mysql-test/r/bdb.result
@@ -1244,3 +1244,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;