mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 23:54:31 +02:00
Merge mysql.com:/home/ram/work/mysql-5.0-maint
into mysql.com:/home/ram/work/b22824/my50-b22824 sql/item_cmpfunc.cc: Auto merged mysql-test/r/strict.result: merging mysql-test/t/strict.test: merging
This commit is contained in:
commit
5198d0b4a8
3 changed files with 16 additions and 1 deletions
|
|
@ -1391,4 +1391,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue