summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2002-01-13 15:35:12 +0000
committerunknown <serg@serg.mysql.com>2002-01-13 15:35:12 +0000
commit859db557a123839c58b960f9d299ceec2705accd (patch)
tree27d4e11826b726380313b6feddc5588b1905e677 /mysql-test
parenta1cfdf43408d27fc809cf6ea9cf768eb37ff01da (diff)
downloadmariadb-git-859db557a123839c58b960f9d299ceec2705accd.tar.gz
ft-bugfix (UPDATE something -> NULL)
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/fulltext.result1
-rw-r--r--mysql-test/t/fulltext.test2
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result
index 6660a788646..1d03dffa76a 100644
--- a/mysql-test/r/fulltext.result
+++ b/mysql-test/r/fulltext.result
@@ -149,3 +149,4 @@ update t1 set title='this test once revealed a bug' where id=1;
select * from t1;
id title
1 this test once revealed a bug
+update t1 set title=NULL where id=1;
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index 50931637188..ace51217bba 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -128,4 +128,4 @@ update t1 set title='this is A test' where id=1;
check table t1;
update t1 set title='this test once revealed a bug' where id=1;
select * from t1;
-
+update t1 set title=NULL where id=1;