3
drop table if exists t1;
7
pk1 int not null auto_increment primary key,
13
(NULL,b'1111111111111111111111111111111111111111111111111111111111111111'),
14
(NULL,b'1000000000000000000000000000000000000000000000000000000000000000'),
15
(NULL,b'0000000000000000000000000000000000000000000000000000000000000001'),
16
(NULL,b'1010101010101010101010101010101010101010101010101010101010101010'),
17
(NULL,b'0101010101010101010101010101010101010101010101010101010101010101');
18
select hex(b) from t1 order by pk1;
22
pk1 int not null auto_increment primary key,
31
select hex(b) from t1 order by pk1;
34
create table t1 (a bit(7), b bit(9)) engine = archive;
36
(94, 46), (31, 438), (61, 152), (78, 123), (88, 411), (122, 118), (0, 177),
37
(75, 42), (108, 67), (79, 349), (59, 188), (68, 206), (49, 345), (118, 380),
38
(111, 368), (94, 468), (56, 379), (77, 133), (29, 399), (9, 363), (23, 36),
39
(116, 390), (119, 368), (87, 351), (123, 411), (24, 398), (34, 202), (28, 499),
40
(30, 83), (5, 178), (60, 343), (4, 245), (104, 280), (106, 446), (127, 403),
41
(44, 307), (68, 454), (57, 135);
42
select a+0 from t1 order by a;
43
select b+0 from t1 order by b;
47
dummyKey INTEGER NOT NULL AUTO_INCREMENT,
85
PRIMARY KEY USING HASH (dummyKey) ) engine=archive;
86
INSERT INTO `t1` VALUES
87
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'000001',b'111111',b'111110',4,5,5,5,5,5,5,5,5,5,3,2,1),
88
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'000010',b'000000',b'111101',4,5,5,5,5,5,5,5,5,5,3,2,1),
89
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'000100',b'001111',b'111011',4,5,5,5,5,5,5,5,5,5,3,2,1),
90
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'001000',b'110000',b'110111',4,5,5,5,5,5,5,5,5,5,3,2,1),
91
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'010000',b'100001',b'101111',4,5,5,5,5,5,5,5,5,5,3,2,1),
92
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'100000',b'010010',b'011111',4,5,5,5,5,5,5,5,5,5,3,2,1),
93
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'000000',b'001100',b'111111',4,5,5,5,5,5,5,5,5,5,3,2,1),
94
(NULL,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,b'111111',b'000000',b'000000',4,5,5,5,5,5,5,5,5,5,3,2,1);
95
--exec $DRIZZLE_DUMP --hex-blob --compact --order-by-primary --skip-extended-insert --no-create-info test t1