summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap.test
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-12-06 17:16:35 +0200
committerunknown <monty@mysql.com>2004-12-06 17:16:35 +0200
commit8a2514ba3f3d49bd338d4f079bef8ab39f6e8bbb (patch)
tree5cfc0009e76810724a4db2904e75e2db2506bd46 /mysql-test/t/heap.test
parentc5a287fbf879490de6c66b6fdae41108f156b420 (diff)
parent7bd0e1a439b1987455d7a77c5a6581867fe10ff7 (diff)
downloadmariadb-git-8a2514ba3f3d49bd338d4f079bef8ab39f6e8bbb.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0 ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Auto merged sql/sql_show.cc: Auto merged
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r--mysql-test/t/heap.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test
index 2eff36f3317..bc0b28370ec 100644
--- a/mysql-test/t/heap.test
+++ b/mysql-test/t/heap.test
@@ -185,3 +185,13 @@ DELETE FROM t1 WHERE date<1101106546;
SELECT * FROM t1;
DROP TABLE t1;
+#
+# Bug #6878: a problem with small length records
+#
+
+create table t1(a char(2)) engine=memory;
+insert into t1 values (NULL), (NULL);
+delete from t1 where a is null;
+insert into t1 values ('2'), ('3');
+select * from t1;
+drop table t1;