diff options
author | unknown <gshchepa/uchum@gleb.loc> | 2007-11-18 16:54:47 +0400 |
---|---|---|
committer | unknown <gshchepa/uchum@gleb.loc> | 2007-11-18 16:54:47 +0400 |
commit | e316f813d922f8666c4ad3dec684939f19aeebca (patch) | |
tree | 201f7442552a68e656b68ed9bbec8fc3bdc0f54a /mysql-test/r/select.result | |
parent | 6bb3c8ee4748bb39ad13a81c71d0a3877a1b4359 (diff) | |
parent | 99054db64c8a41acbe570756e286a8d78811197c (diff) | |
download | mariadb-git-e316f813d922f8666c4ad3dec684939f19aeebca.tar.gz |
Merge gleb.loc:/work/bk/PA/5.0-opt-32335
into gleb.loc:/work/bk/5.1-opt
mysql-test/r/select.result:
Auto merged
mysql-test/t/select.test:
Auto merged
sql/item_cmpfunc.cc:
Merge with 5.0-opt.
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 719d0926022..2f305f6ec5d 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -4307,6 +4307,12 @@ c3 DROP TABLE t1; DROP TABLE t2; +CREATE TABLE t1 (c1 BIGINT NOT NULL); +INSERT INTO t1 (c1) VALUES (1); +SELECT * FROM t1 WHERE c1 > NULL + 1; +c1 +DROP TABLE t1; + End of 5.0 tests create table t1(a INT, KEY (a)); INSERT INTO t1 VALUES (1),(2),(3),(4),(5); |