~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/t/archive_bitfield.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- source include/have_archive.inc
 
2
-- source include/have_binlog_format_mixed_or_statement.inc
 
3
-- source include/not_embedded.inc
 
4
 
 
5
--disable_warnings
 
6
drop table if exists t1;
 
7
--enable_warnings
 
8
 
 
9
create table t1 (
 
10
  pk1 int not null auto_increment primary key,
 
11
  b bit(64)
 
12
) engine=archive;
 
13
 
 
14
show create table t1;
 
15
insert into t1 values 
 
16
(NULL,b'1111111111111111111111111111111111111111111111111111111111111111'),
 
17
(NULL,b'1000000000000000000000000000000000000000000000000000000000000000'),
 
18
(NULL,b'0000000000000000000000000000000000000000000000000000000000000001'),
 
19
(NULL,b'1010101010101010101010101010101010101010101010101010101010101010'),
 
20
(NULL,b'0101010101010101010101010101010101010101010101010101010101010101');
 
21
select hex(b) from t1 order by pk1;
 
22
drop table t1;
 
23
 
 
24
create table t1 (
 
25
  pk1 int not null auto_increment primary key,
 
26
  b bit(9)
 
27
) engine=archive;
 
28
insert into t1 values 
 
29
(NULL,b'000000000'),
 
30
(NULL,b'000000001'),
 
31
(NULL,b'000000010'),
 
32
(NULL,b'000000011'),
 
33
(NULL,b'000000100');
 
34
select hex(b) from t1 order by pk1;
 
35
drop table t1;
 
36
 
 
37
create table t1 (a bit(7), b bit(9)) engine = archive;
 
38
insert into t1 values 
 
39
(94, 46), (31, 438), (61, 152), (78, 123), (88, 411), (122, 118), (0, 177),    
 
40
(75, 42), (108, 67), (79, 349), (59, 188), (68, 206), (49, 345), (118, 380),   
 
41
(111, 368), (94, 468), (56, 379), (77, 133), (29, 399), (9, 363), (23, 36),    
 
42
(116, 390), (119, 368), (87, 351), (123, 411), (24, 398), (34, 202), (28, 499),
 
43
(30, 83), (5, 178), (60, 343), (4, 245), (104, 280), (106, 446), (127, 403),   
 
44
(44, 307), (68, 454), (57, 135);
 
45
select a+0 from t1 order by a;
 
46
select b+0 from t1 order by b;
 
47
drop table t1;
 
48
 
 
49
create table t1 (
 
50
                dummyKey INTEGER NOT NULL AUTO_INCREMENT,
 
51
                a001 TINYINT,
 
52
                a010 TINYINT,
 
53
                a012 TINYINT,
 
54
                a015 TINYINT,
 
55
                a016 TINYINT,
 
56
                a017 TINYINT,
 
57
                a019 TINYINT,
 
58
                a029 TINYINT,
 
59
                a030 TINYINT,
 
60
                a031 TINYINT,
 
61
                a032 TINYINT,
 
62
                a042 TINYINT,
 
63
                a043 TINYINT,
 
64
                a044 TINYINT,
 
65
                a3001 TINYINT,
 
66
                a3002 TINYINT,
 
67
                a3003 TINYINT,
 
68
                a3004 TINYINT,
 
69
                a3005 TINYINT,
 
70
                a3021 TINYINT,
 
71
                a3022 TINYINT,
 
72
                a BIT(6),
 
73
                b BIT(6),
 
74
                c BIT(6),
 
75
                d TINYINT,
 
76
                e TINYINT,
 
77
                f TINYINT,
 
78
                g TINYINT,
 
79
                h TINYINT,
 
80
                i TINYINT,
 
81
                j TINYINT,
 
82
                k TINYINT,
 
83
                l TINYINT,
 
84
                m TINYINT,
 
85
                n TINYINT,
 
86
                o TINYINT,
 
87
                a034 TINYINT,
 
88
PRIMARY KEY USING HASH (dummyKey) ) engine=archive;
 
89
INSERT INTO `t1` VALUES
 
90
(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),
 
91
(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),
 
92
(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),
 
93
(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),
 
94
(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),
 
95
(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),
 
96
(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),
 
97
(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);
 
98
--exec $MYSQL_DUMP --hex-blob --compact --order-by-primary --skip-extended-insert --no-create-info test t1
 
99
drop table t1;