diff options
author | unknown <antony@ltantony.mysql.com> | 2005-05-07 14:46:54 +0100 |
---|---|---|
committer | unknown <antony@ltantony.mysql.com> | 2005-05-07 14:46:54 +0100 |
commit | 0de8a53ff223bee81fa8bd17adecf2be8767fa26 (patch) | |
tree | 89b63f87f5c5415df67b939f829508fc665e77e2 /mysql-test/r/create.result | |
parent | 786ba12f3164a6c3246c94776c6a45410e4fa5b5 (diff) | |
parent | 76f63c975dde623e4d5e88ced4720d3d76fc2da8 (diff) | |
download | mariadb-git-0de8a53ff223bee81fa8bd17adecf2be8767fa26.tar.gz |
Merge ltantony.mysql.com:/usr/home/antony/work2/p4-bug9666
into ltantony.mysql.com:/usr/home/antony/work2/megapatch-4.1
BitKeeper/etc/logging_ok:
auto-union
mysql-test/r/create.result:
Auto merged
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 123fdbd90bd..103bed598ef 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -552,3 +552,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; |