diff options
author | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-04-19 10:42:47 +0500 |
---|---|---|
committer | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-04-19 10:42:47 +0500 |
commit | 0bc7d9ccb44a627997d2ab567bf1a75399eda908 (patch) | |
tree | 5f68c9f111f3e79251a667a9db4c9a310e991c52 /mysql-test/r/strict.result | |
parent | 74192cf9840bd461375c1cff60eb6a686c381657 (diff) | |
parent | 2f11f1d3a9b4138315d4f0bcf3e8725dbfb25e02 (diff) | |
download | mariadb-git-0bc7d9ccb44a627997d2ab567bf1a75399eda908.tar.gz |
Merge mysql.com:/home/ram/work/b22824/my50-b22824
into mysql.com:/home/ram/work/b22824/my51-b22824
mysql-test/r/strict.result:
merging
mysql-test/t/strict.test:
merging
sql/item_cmpfunc.cc:
merging
Diffstat (limited to 'mysql-test/r/strict.result')
-rw-r--r-- | mysql-test/r/strict.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/strict.result b/mysql-test/r/strict.result index 94f4637cd05..3b2fda4248a 100644 --- a/mysql-test/r/strict.result +++ b/mysql-test/r/strict.result @@ -1393,4 +1393,10 @@ create table t1 (f1 set('a','a')); ERROR HY000: Column 'f1' has duplicated value 'a' in SET create table t1 (f1 enum('a','a')); ERROR HY000: Column 'f1' has duplicated value 'a' in ENUM +set @@sql_mode='NO_ZERO_DATE'; +create table t1(a datetime not null); +select count(*) from t1 where a is null; +count(*) +0 +drop table t1; End of 5.0 tests |