summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_blob.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/type_blob.result')
-rw-r--r--mysql-test/r/type_blob.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/type_blob.result b/mysql-test/r/type_blob.result
index e6fd49b4247..1de119f0d24 100644
--- a/mysql-test/r/type_blob.result
+++ b/mysql-test/r/type_blob.result
@@ -985,3 +985,9 @@ COUNT(*)
DROP FUNCTION f1;
DROP TABLE t1;
End of 5.1 tests
+CREATE TABLE t1 ( f1 blob, f2 blob );
+INSERT INTO t1 VALUES ('','');
+SELECT f1,f2,"found row" FROM t1 WHERE f1 = f2 ;
+f1 f2 found row
+ found row
+DROP TABLE t1;