mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge
BitKeeper/etc/logging_ok: auto-union mysql-test/r/create.result: Auto merged mysql-test/r/insert_update.result: Auto merged mysql-test/t/create.test: Auto merged ndb/src/kernel/blocks/dbdict/Dbdict.cpp: Auto merged sql/sql_insert.cc: Auto merged sql/sql_yacc.yy: SCCS merged
This commit is contained in:
@ -568,3 +568,14 @@ NULL 1
|
||||
Test 0
|
||||
NULL 1
|
||||
drop table t1, t2, t3;
|
||||
create table t1 (b bool not null default false);
|
||||
create table t2 (b bool not null default true);
|
||||
insert into t1 values ();
|
||||
insert into t2 values ();
|
||||
select * from t1;
|
||||
b
|
||||
0
|
||||
select * from t2;
|
||||
b
|
||||
1
|
||||
drop table t1,t2;
|
||||
|
Reference in New Issue
Block a user