1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed tests to be independed from environment

This commit is contained in:
bell@sanja.is.com.ua
2002-08-30 21:32:59 +03:00
parent 76aff6352f
commit 463c59e1e9
29 changed files with 29 additions and 2 deletions

View File

@ -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);