diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2004-01-09 22:28:29 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2004-01-09 22:28:29 +0200 |
commit | d84ee4d503783a174346393436e7a8ecc7b941bd (patch) | |
tree | 98f4fd0bc97145251b223e218e21c8f1f8a2228b /mysql-test/t/null.test | |
parent | 229cc612776f757de6822eb97eb4e9a97226e760 (diff) | |
download | mariadb-git-d84ee4d503783a174346393436e7a8ecc7b941bd.tar.gz |
null.result, null.test:
Fix for a bug #2219, regarding a bad cast to integer from NULL
item_func.h:
Fix for a bug #2219, regarding a bad cast to integer from NULL
sql_parse.cc:
A fix for a bug #2207, with mysql server haning on option setting
sql/sql_parse.cc:
A fix for a bug #2207, with mysql server haning on option setting
sql/item_func.h:
Fix for a bug #2219, regarding a bad cast to integer from NULL
mysql-test/t/null.test:
Fix for a bug #2219, regarding a bad cast to integer from NULL
mysql-test/r/null.result:
Fix for a bug #2219, regarding a bad cast to integer from NULL
Diffstat (limited to 'mysql-test/t/null.test')
-rw-r--r-- | mysql-test/t/null.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/null.test b/mysql-test/t/null.test index c11ed78253b..9f3b6646e7f 100644 --- a/mysql-test/t/null.test +++ b/mysql-test/t/null.test @@ -97,3 +97,4 @@ insert into t1 values explain select * from t1 where a between 2 and 3; explain select * from t1 where a between 2 and 3 or b is null; drop table t1; +select cast(NULL as signed); |