summaryrefslogtreecommitdiff
path: root/mysql-test/main/row-checksum-old.result
blob: 7caed4fc7dcf4e848363fabe323d66a47a506361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
create table t1 (a int null, v varchar(100)) engine=myisam checksum=0;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table if exists t1;
create table t1 (a int null, v varchar(100)) engine=myisam checksum=1;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table if exists t1;
create table t1 (a int null, v varchar(100)) engine=innodb checksum=0;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table t1;
create table t1 (a int null, v varchar(100)) engine=maria checksum=0;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table t1;
create table t1 (a int null, v varchar(100)) engine=maria checksum=1;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table t1;
create table t1 (a int null, v varchar(100)) engine=myisam checksum=1 row_format=fixed;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	4108368782
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	4108368782
drop table if exists t1;
create table t1 (a int null, v varchar(100)) engine=innodb checksum=0 row_format=compact;
insert into t1 values(null, null), (1, "hello");
checksum table t1;
Table	Checksum
test.t1	452555338
checksum table t1 quick;
Table	Checksum
test.t1	NULL
checksum table t1 extended;
Table	Checksum
test.t1	452555338
drop table t1;
#
# MDEV-17085: CHECKSUM TABLE EXTENDED does not work correctly
#
CREATE TABLE t1 ( c1 int NOT NULL, c2 int NOT NULL, c4 varchar(20), c5 varchar(20), c6 varchar(20), c7 varchar(20), c8 varchar(20), c9 varchar(20), c10 varchar(20), c11 varchar(20), c12 varchar(20), c13 varchar(20), c14 varchar(20), c15 varchar(20), c16 varchar(20), c19 int NOT NULL, c20 int NOT NULL, c21 varchar(20), c22 VARCHAR(20), c23 varchar(20));
insert into t1 values (5,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,"dog",NULL,NULL);
# Important is that checksum is different from following
CHECKSUM TABLE t1 EXTENDED;
Table	Checksum
test.t1	2514025256
UPDATE t1 SET c21='cat' WHERE  c1=5;
# Important is that checksum is different from above
CHECKSUM TABLE t1 EXTENDED;
Table	Checksum
test.t1	2326430205
drop table t1;
#
# End of 5.5 tests
#
#
# MDEV-28020 CHECKSUM TABLE calculates different checksums
#
create table t1 ( a int, b int as (a) virtual, c text) engine=myisam checksum=1;
insert ignore t1 values (1,2,'foo'),(2,3,'bar');
Warnings:
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
checksum table t1 extended;
Table	Checksum
test.t1	4101438232
checksum table t1;
Table	Checksum
test.t1	4101438232
drop table t1;
create table t1 ( a int, b int as (a) virtual, c text, key(b)) engine=myisam checksum=1;
insert ignore t1 values (1,2,'foo'),(2,3,'bar');
Warnings:
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
checksum table t1 extended;
Table	Checksum
test.t1	4101438232
checksum table t1;
Table	Checksum
test.t1	4101438232
drop table t1;
create table t1 ( a int, b int as (a) stored, c text) engine=myisam checksum=1;
insert ignore t1 values (1,2,'foo'),(2,3,'bar');
Warnings:
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
Warning	1906	The value specified for generated column 'b' in table 't1' has been ignored
checksum table t1 extended;
Table	Checksum
test.t1	2897795735
checksum table t1;
Table	Checksum
test.t1	2897795735
drop table t1;
#
# End of 10.2 tests
#