diff options
author | bell@sanja.is.com.ua <> | 2002-08-30 21:32:59 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-08-30 21:32:59 +0300 |
commit | 463c59e1e917b1363390def20b8f0ea3bb173cbb (patch) | |
tree | 3b15ca06d9e0a993eaa6b6b1faf4c1885b18a2a2 /mysql-test/r/func_in.result | |
parent | 76aff6352f8f8d1ce9c0cb9ad7ebb1104dea8412 (diff) | |
download | mariadb-git-463c59e1e917b1363390def20b8f0ea3bb173cbb.tar.gz |
fixed tests to be independed from environment
Diffstat (limited to 'mysql-test/r/func_in.result')
-rw-r--r-- | mysql-test/r/func_in.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/func_in.result b/mysql-test/r/func_in.result index 8c991dee8d8..ba33ee0831d 100644 --- a/mysql-test/r/func_in.result +++ b/mysql-test/r/func_in.result @@ -1,3 +1,4 @@ +drop table if exists t1; CREATE TABLE t1 (field char(1)); INSERT INTO t1 VALUES ('A'),(NULL); SELECT * from t1 WHERE field IN (NULL); |