From 07908a45448f5eeaa536f7798a0ed4b548c5e1c7 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 2 Jan 2006 14:38:38 +0100 Subject: bug#16125 - ndb bitfield of exact 32 bits, incorrect assertion (i.e. only noticable in debug compiled) mysql-test/r/ndb_bitfield.result: bug#16125 mysql-test/t/ndb_bitfield.test: bug#16125 ndb/include/util/Bitmask.hpp: bug#16125 --- mysql-test/t/ndb_bitfield.test | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'mysql-test/t/ndb_bitfield.test') diff --git a/mysql-test/t/ndb_bitfield.test b/mysql-test/t/ndb_bitfield.test index 0256ecf89ed..59d6e56577e 100644 --- a/mysql-test/t/ndb_bitfield.test +++ b/mysql-test/t/ndb_bitfield.test @@ -112,3 +112,11 @@ create table t1 ( key(b) ) engine=ndbcluster; +# bug#16125 +create table t1 ( + pk1 int primary key, + b bit(32) not null +) engine=ndbcluster; + +insert into t1 values (1,1); +drop table t1; -- cgit v1.2.1