mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge with 4.0.14
This commit is contained in:
@ -53,6 +53,17 @@ insert into t1 values ('rts',NULL),('rts',NULL),('test',NULL);
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
#Test of behaviour with INSERT VALUES (NULL)
|
||||
#
|
||||
|
||||
create table t1 (id int NOT NULL DEFAULT 8);
|
||||
-- error 1048
|
||||
insert into t1 values(NULL);
|
||||
insert into t1 values (1), (NULL), (2);
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Test of mysqld crash with fully qualified column names
|
||||
#
|
||||
|
Reference in New Issue
Block a user