diff options
author | unknown <monty@hundin.mysql.fi> | 2002-05-16 23:35:09 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-05-16 23:35:09 +0300 |
commit | 66f426c0635d16f7f594f6bf867e13e5cba18500 (patch) | |
tree | cbcb80b627d5f9bc7c0b27150bbdef3cd36d22aa /mysql-test/r/func_isnull.result | |
parent | 4d094257dbb785d792785e610ab3cdf41eae9b8c (diff) | |
download | mariadb-git-66f426c0635d16f7f594f6bf867e13e5cba18500.tar.gz |
Fixed some compilation problems in last changeset
Docs/manual.texi:
Small changes regarind user resources
client/mysqlbinlog.cc:
Applied patch to support --database
mysql-test/r/func_isnull.result:
New test results
mysql-test/r/join.result:
New test results
mysql-test/r/show_check.result:
New test results
mysql-test/r/type_datetime.result:
New test results
mysql-test/r/type_decimal.result:
New test results
mysql-test/r/type_float.result:
New test results
mysys/my_gethostbyname.c:
Fixed type on last push
mysys/my_pthread.c:
Fixed type on last push
sql/sql_select.cc:
Fixed bug in LIMIT handling
Diffstat (limited to 'mysql-test/r/func_isnull.result')
-rw-r--r-- | mysql-test/r/func_isnull.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_isnull.result b/mysql-test/r/func_isnull.result index deaeaaf71c9..20ddc87ee78 100644 --- a/mysql-test/r/func_isnull.result +++ b/mysql-test/r/func_isnull.result @@ -1 +1,7 @@ +drop table if exists t1; +create table t1 (id int auto_increment primary key not null, mydate date not null); +insert into t1 values (0,"2002-05-01"),(0,"2002-05-01"),(0,"2002-05-01"); +flush tables; +select * from t1 where isnull(to_days(mydate)); id mydate +drop table t1; |