summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_bitfield.test
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2004-12-23 15:30:34 +0100
committerunknown <mskold@mysql.com>2004-12-23 15:30:34 +0100
commitba0c78795db76e8b783c9dd97930a6d8572a91ae (patch)
tree7b3edcf24fd0aea21e904da3665c8c62e3664c6e /mysql-test/t/ndb_bitfield.test
parentad0cca6b9b995514fbde8b84306f027f7ce7cdf5 (diff)
downloadmariadb-git-ba0c78795db76e8b783c9dd97930a6d8572a91ae.tar.gz
Added bit field support for ndbcluster
Diffstat (limited to 'mysql-test/t/ndb_bitfield.test')
-rw-r--r--mysql-test/t/ndb_bitfield.test61
1 files changed, 61 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_bitfield.test b/mysql-test/t/ndb_bitfield.test
new file mode 100644
index 00000000000..f1ec7b6433c
--- /dev/null
+++ b/mysql-test/t/ndb_bitfield.test
@@ -0,0 +1,61 @@
+-- source include/have_ndb.inc
+
+--disable_warnings
+drop table if exists t1;
+--enable_warnings
+
+create table t1 (
+ pk1 int not null primary key,
+ b bit(64)
+) engine=ndbcluster;
+
+show create table t1;
+insert into t1 values
+(0,b'1111111111111111111111111111111111111111111111111111111111111111'),
+(1,b'1000000000000000000000000000000000000000000000000000000000000000'),
+(2,b'0000000000000000000000000000000000000000000000000000000000000001'),
+(3,b'1010101010101010101010101010101010101010101010101010101010101010'),
+(4,b'0101010101010101010101010101010101010101010101010101010101010101');
+select hex(b) from t1 order by pk1;
+drop table t1;
+
+create table t1 (
+ pk1 int not null primary key,
+ b bit(9)
+) engine=ndbcluster;
+insert into t1 values
+(0,b'000000000'),
+(1,b'000000001'),
+(2,b'000000010'),
+(3,b'000000011'),
+(4,b'000000100');
+select hex(b) from t1 order by pk1;
+update t1 set b = b + b'101010101';
+select hex(b) from t1 order by pk1;
+drop table t1;
+
+create table t1 (a bit(7), b bit(9)) engine = ndbcluster;
+insert into t1 values
+(94, 46), (31, 438), (61, 152), (78, 123), (88, 411), (122, 118), (0, 177),
+(75, 42), (108, 67), (79, 349), (59, 188), (68, 206), (49, 345), (118, 380),
+(111, 368), (94, 468), (56, 379), (77, 133), (29, 399), (9, 363), (23, 36),
+(116, 390), (119, 368), (87, 351), (123, 411), (24, 398), (34, 202), (28, 499),
+(30, 83), (5, 178), (60, 343), (4, 245), (104, 280), (106, 446), (127, 403),
+(44, 307), (68, 454), (57, 135);
+select a+0 from t1 order by a;
+select b+0 from t1 order by b;
+drop table t1;
+
+--error 1005
+create table t1 (
+ pk1 bit(9) not null primary key,
+ b int
+) engine=ndbcluster;
+
+--error 1005
+create table t1 (
+ pk1 int not null primary key,
+ b bit(9),
+ key(b)
+) engine=ndbcluster;
+