~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#
2
# Test bugs in the MyISAM code
3
#
4
5
# Initialise
6
--disable_warnings
7
drop table if exists t1,t2;
8
--enable_warnings
9
SET SQL_WARNINGS=1;
10
11
#
12
# Test problem with CHECK TABLE;
13
#
14
15
CREATE TABLE t1 (
16
  STRING_DATA char(255) default NULL,
17
  KEY string_data (STRING_DATA)
18
) ENGINE=MyISAM;
19
20
INSERT INTO t1 VALUES ('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA');
21
INSERT INTO t1 VALUES ('DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD');
22
INSERT INTO t1 VALUES ('FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF');
23
INSERT INTO t1 VALUES ('FGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG');
24
INSERT INTO t1 VALUES ('HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH');
25
INSERT INTO t1 VALUES ('WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW');
26
CHECK TABLE t1;
27
drop table t1;
28
29
#
30
# Test problem with rows that are 65517-65520 bytes long
31
#
32
396 by Brian Aker
Cleanup tiny and small int.
33
create table t1 (a int not null auto_increment, b blob not null, primary key (a));
1 by brian
clean slate
34
35
let $1=100;
36
disable_query_log;
37
--disable_warnings
38
SET SQL_WARNINGS=0;
39
while ($1)
40
{
41
  eval insert into t1 (b) values(repeat(char(65+$1),65550-$1));
42
  dec $1;
43
}
44
SET SQL_WARNINGS=1;
45
--enable_warnings
46
enable_query_log;
47
check table t1;
48
repair table t1;
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
49
50
# @TODO Because there are no notes on what the heck this
51
# is actually testing (which bug?), it's difficult to tell
52
# what the below DELETE statement is doing.  Since we don't
53
# support bitwise operators, I am replacing the delete statement
54
# with a version we support.
55
#delete from t1 where (a & 1);
56
delete from t1 where (a mod 2) = 1;
1 by brian
clean slate
57
check table t1;
58
repair table t1;
59
check table t1;
60
drop table t1;
61
62
#
63
# Test bug: Two optimize in a row reset index cardinality
64
#
65
66
create table t1 (a int not null auto_increment, b int not null, primary key (a), index(b));
67
insert into t1 (b) values (1),(2),(2),(2),(2);
68
optimize table t1;
69
show index from t1;
70
optimize table t1;
71
show index from t1;
72
drop table t1;
73
74
#
75
# Test of how ORDER BY works when doing it on the whole table
76
#
77
78
create table t1 (a int not null, b int not null, c int not null, primary key (a),key(b)) engine=myisam;
79
insert into t1 values (3,3,3),(1,1,1),(2,2,2),(4,4,4);
80
explain select * from t1 order by a;
81
explain select * from t1 order by b;
82
explain select * from t1 order by c;
83
explain select a from t1 order by a;
84
explain select b from t1 order by b;
85
explain select a,b from t1 order by b;
86
explain select a,b from t1;
87
explain select a,b,c from t1;
88
drop table t1;
89
90
#
91
# Test of OPTIMIZE of locked and modified tables
92
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
93
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
1 by brian
clean slate
94
INSERT INTO  t1 VALUES (1), (2), (3);
95
LOCK TABLES t1 WRITE;
96
INSERT INTO  t1 VALUES (1), (2), (3);
97
OPTIMIZE TABLE t1;
98
DROP TABLE t1;
99
100
#
101
# Test of optimize, when only mi_sort_index (but not mi_repair*) is done
102
# in ha_myisam::repair, and index size is changed (decreased).
103
#
104
105
create table t1 ( t1 char(255), key(t1(250)));
106
insert t1 values ('137513751375137513751375137513751375137569516951695169516951695169516951695169');
107
insert t1 values ('178417841784178417841784178417841784178403420342034203420342034203420342034203');
108
insert t1 values ('213872387238723872387238723872387238723867376737673767376737673767376737673767');
109
insert t1 values ('242624262426242624262426242624262426242607890789078907890789078907890789078907');
110
insert t1 values ('256025602560256025602560256025602560256011701170117011701170117011701170117011');
111
insert t1 values ('276027602760276027602760276027602760276001610161016101610161016101610161016101');
112
insert t1 values ('281528152815281528152815281528152815281564956495649564956495649564956495649564');
113
insert t1 values ('292129212921292129212921292129212921292102100210021002100210021002100210021002');
114
insert t1 values ('380638063806380638063806380638063806380634483448344834483448344834483448344834');
115
insert t1 values ('411641164116411641164116411641164116411616301630163016301630163016301630163016');
116
insert t1 values ('420842084208420842084208420842084208420899889988998899889988998899889988998899');
117
insert t1 values ('438443844384438443844384438443844384438482448244824482448244824482448244824482');
118
insert t1 values ('443244324432443244324432443244324432443239613961396139613961396139613961396139');
119
insert t1 values ('485448544854485448544854485448544854485477847784778477847784778477847784778477');
120
insert t1 values ('494549454945494549454945494549454945494555275527552755275527552755275527552755');
121
insert t1 values ('538647864786478647864786478647864786478688918891889188918891889188918891889188');
122
insert t1 values ('565556555655565556555655565556555655565554845484548454845484548454845484548454');
123
insert t1 values ('607860786078607860786078607860786078607856665666566656665666566656665666566656');
124
insert t1 values ('640164016401640164016401640164016401640141274127412741274127412741274127412741');
125
insert t1 values ('719471947194719471947194719471947194719478717871787178717871787178717871787178');
126
insert t1 values ('742574257425742574257425742574257425742549604960496049604960496049604960496049');
127
insert t1 values ('887088708870887088708870887088708870887035963596359635963596359635963596359635');
128
insert t1 values ('917791779177917791779177917791779177917773857385738573857385738573857385738573');
129
insert t1 values ('933293329332933293329332933293329332933278987898789878987898789878987898789878');
130
insert t1 values ('963896389638963896389638963896389638963877807780778077807780778077807780778077');
131
delete from t1 where t1>'2';
132
insert t1 values ('70'), ('84'), ('60'), ('20'), ('76'), ('89'), ('49'), ('50'),
133
('88'), ('61'), ('42'), ('98'), ('39'), ('30'), ('25'), ('66'), ('61'), ('48'),
134
('80'), ('84'), ('98'), ('19'), ('91'), ('42'), ('47');
135
optimize table t1;
136
check table t1;
137
drop table t1;
138
139
#
140
# test of myisam with huge number of packed fields
141
#
142
143
create table t1 (i1 int, i2 int, i3 int, i4 int, i5 int, i6 int, i7 int, i8
144
int, i9 int, i10 int, i11 int, i12 int, i13 int, i14 int, i15 int, i16 int, i17
145
int, i18 int, i19 int, i20 int, i21 int, i22 int, i23 int, i24 int, i25 int,
146
i26 int, i27 int, i28 int, i29 int, i30 int, i31 int, i32 int, i33 int, i34
147
int, i35 int, i36 int, i37 int, i38 int, i39 int, i40 int, i41 int, i42 int,
148
i43 int, i44 int, i45 int, i46 int, i47 int, i48 int, i49 int, i50 int, i51
149
int, i52 int, i53 int, i54 int, i55 int, i56 int, i57 int, i58 int, i59 int,
150
i60 int, i61 int, i62 int, i63 int, i64 int, i65 int, i66 int, i67 int, i68
151
int, i69 int, i70 int, i71 int, i72 int, i73 int, i74 int, i75 int, i76 int,
152
i77 int, i78 int, i79 int, i80 int, i81 int, i82 int, i83 int, i84 int, i85
153
int, i86 int, i87 int, i88 int, i89 int, i90 int, i91 int, i92 int, i93 int,
154
i94 int, i95 int, i96 int, i97 int, i98 int, i99 int, i100 int, i101 int, i102
155
int, i103 int, i104 int, i105 int, i106 int, i107 int, i108 int, i109 int, i110
156
int, i111 int, i112 int, i113 int, i114 int, i115 int, i116 int, i117 int, i118
157
int, i119 int, i120 int, i121 int, i122 int, i123 int, i124 int, i125 int, i126
158
int, i127 int, i128 int, i129 int, i130 int, i131 int, i132 int, i133 int, i134
159
int, i135 int, i136 int, i137 int, i138 int, i139 int, i140 int, i141 int, i142
160
int, i143 int, i144 int, i145 int, i146 int, i147 int, i148 int, i149 int, i150
161
int, i151 int, i152 int, i153 int, i154 int, i155 int, i156 int, i157 int, i158
162
int, i159 int, i160 int, i161 int, i162 int, i163 int, i164 int, i165 int, i166
163
int, i167 int, i168 int, i169 int, i170 int, i171 int, i172 int, i173 int, i174
164
int, i175 int, i176 int, i177 int, i178 int, i179 int, i180 int, i181 int, i182
165
int, i183 int, i184 int, i185 int, i186 int, i187 int, i188 int, i189 int, i190
166
int, i191 int, i192 int, i193 int, i194 int, i195 int, i196 int, i197 int, i198
167
int, i199 int, i200 int, i201 int, i202 int, i203 int, i204 int, i205 int, i206
168
int, i207 int, i208 int, i209 int, i210 int, i211 int, i212 int, i213 int, i214
169
int, i215 int, i216 int, i217 int, i218 int, i219 int, i220 int, i221 int, i222
170
int, i223 int, i224 int, i225 int, i226 int, i227 int, i228 int, i229 int, i230
171
int, i231 int, i232 int, i233 int, i234 int, i235 int, i236 int, i237 int, i238
172
int, i239 int, i240 int, i241 int, i242 int, i243 int, i244 int, i245 int, i246
173
int, i247 int, i248 int, i249 int, i250 int, i251 int, i252 int, i253 int, i254
174
int, i255 int, i256 int, i257 int, i258 int, i259 int, i260 int, i261 int, i262
175
int, i263 int, i264 int, i265 int, i266 int, i267 int, i268 int, i269 int, i270
176
int, i271 int, i272 int, i273 int, i274 int, i275 int, i276 int, i277 int, i278
177
int, i279 int, i280 int, i281 int, i282 int, i283 int, i284 int, i285 int, i286
178
int, i287 int, i288 int, i289 int, i290 int, i291 int, i292 int, i293 int, i294
179
int, i295 int, i296 int, i297 int, i298 int, i299 int, i300 int, i301 int, i302
180
int, i303 int, i304 int, i305 int, i306 int, i307 int, i308 int, i309 int, i310
181
int, i311 int, i312 int, i313 int, i314 int, i315 int, i316 int, i317 int, i318
182
int, i319 int, i320 int, i321 int, i322 int, i323 int, i324 int, i325 int, i326
183
int, i327 int, i328 int, i329 int, i330 int, i331 int, i332 int, i333 int, i334
184
int, i335 int, i336 int, i337 int, i338 int, i339 int, i340 int, i341 int, i342
185
int, i343 int, i344 int, i345 int, i346 int, i347 int, i348 int, i349 int, i350
186
int, i351 int, i352 int, i353 int, i354 int, i355 int, i356 int, i357 int, i358
187
int, i359 int, i360 int, i361 int, i362 int, i363 int, i364 int, i365 int, i366
188
int, i367 int, i368 int, i369 int, i370 int, i371 int, i372 int, i373 int, i374
189
int, i375 int, i376 int, i377 int, i378 int, i379 int, i380 int, i381 int, i382
190
int, i383 int, i384 int, i385 int, i386 int, i387 int, i388 int, i389 int, i390
191
int, i391 int, i392 int, i393 int, i394 int, i395 int, i396 int, i397 int, i398
192
int, i399 int, i400 int, i401 int, i402 int, i403 int, i404 int, i405 int, i406
193
int, i407 int, i408 int, i409 int, i410 int, i411 int, i412 int, i413 int, i414
194
int, i415 int, i416 int, i417 int, i418 int, i419 int, i420 int, i421 int, i422
195
int, i423 int, i424 int, i425 int, i426 int, i427 int, i428 int, i429 int, i430
196
int, i431 int, i432 int, i433 int, i434 int, i435 int, i436 int, i437 int, i438
197
int, i439 int, i440 int, i441 int, i442 int, i443 int, i444 int, i445 int, i446
198
int, i447 int, i448 int, i449 int, i450 int, i451 int, i452 int, i453 int, i454
199
int, i455 int, i456 int, i457 int, i458 int, i459 int, i460 int, i461 int, i462
200
int, i463 int, i464 int, i465 int, i466 int, i467 int, i468 int, i469 int, i470
201
int, i471 int, i472 int, i473 int, i474 int, i475 int, i476 int, i477 int, i478
202
int, i479 int, i480 int, i481 int, i482 int, i483 int, i484 int, i485 int, i486
203
int, i487 int, i488 int, i489 int, i490 int, i491 int, i492 int, i493 int, i494
204
int, i495 int, i496 int, i497 int, i498 int, i499 int, i500 int, i501 int, i502
205
int, i503 int, i504 int, i505 int, i506 int, i507 int, i508 int, i509 int, i510
206
int, i511 int, i512 int, i513 int, i514 int, i515 int, i516 int, i517 int, i518
207
int, i519 int, i520 int, i521 int, i522 int, i523 int, i524 int, i525 int, i526
208
int, i527 int, i528 int, i529 int, i530 int, i531 int, i532 int, i533 int, i534
209
int, i535 int, i536 int, i537 int, i538 int, i539 int, i540 int, i541 int, i542
210
int, i543 int, i544 int, i545 int, i546 int, i547 int, i548 int, i549 int, i550
211
int, i551 int, i552 int, i553 int, i554 int, i555 int, i556 int, i557 int, i558
212
int, i559 int, i560 int, i561 int, i562 int, i563 int, i564 int, i565 int, i566
213
int, i567 int, i568 int, i569 int, i570 int, i571 int, i572 int, i573 int, i574
214
int, i575 int, i576 int, i577 int, i578 int, i579 int, i580 int, i581 int, i582
215
int, i583 int, i584 int, i585 int, i586 int, i587 int, i588 int, i589 int, i590
216
int, i591 int, i592 int, i593 int, i594 int, i595 int, i596 int, i597 int, i598
217
int, i599 int, i600 int, i601 int, i602 int, i603 int, i604 int, i605 int, i606
218
int, i607 int, i608 int, i609 int, i610 int, i611 int, i612 int, i613 int, i614
219
int, i615 int, i616 int, i617 int, i618 int, i619 int, i620 int, i621 int, i622
220
int, i623 int, i624 int, i625 int, i626 int, i627 int, i628 int, i629 int, i630
221
int, i631 int, i632 int, i633 int, i634 int, i635 int, i636 int, i637 int, i638
222
int, i639 int, i640 int, i641 int, i642 int, i643 int, i644 int, i645 int, i646
223
int, i647 int, i648 int, i649 int, i650 int, i651 int, i652 int, i653 int, i654
224
int, i655 int, i656 int, i657 int, i658 int, i659 int, i660 int, i661 int, i662
225
int, i663 int, i664 int, i665 int, i666 int, i667 int, i668 int, i669 int, i670
226
int, i671 int, i672 int, i673 int, i674 int, i675 int, i676 int, i677 int, i678
227
int, i679 int, i680 int, i681 int, i682 int, i683 int, i684 int, i685 int, i686
228
int, i687 int, i688 int, i689 int, i690 int, i691 int, i692 int, i693 int, i694
229
int, i695 int, i696 int, i697 int, i698 int, i699 int, i700 int, i701 int, i702
230
int, i703 int, i704 int, i705 int, i706 int, i707 int, i708 int, i709 int, i710
231
int, i711 int, i712 int, i713 int, i714 int, i715 int, i716 int, i717 int, i718
232
int, i719 int, i720 int, i721 int, i722 int, i723 int, i724 int, i725 int, i726
233
int, i727 int, i728 int, i729 int, i730 int, i731 int, i732 int, i733 int, i734
234
int, i735 int, i736 int, i737 int, i738 int, i739 int, i740 int, i741 int, i742
235
int, i743 int, i744 int, i745 int, i746 int, i747 int, i748 int, i749 int, i750
236
int, i751 int, i752 int, i753 int, i754 int, i755 int, i756 int, i757 int, i758
237
int, i759 int, i760 int, i761 int, i762 int, i763 int, i764 int, i765 int, i766
238
int, i767 int, i768 int, i769 int, i770 int, i771 int, i772 int, i773 int, i774
239
int, i775 int, i776 int, i777 int, i778 int, i779 int, i780 int, i781 int, i782
240
int, i783 int, i784 int, i785 int, i786 int, i787 int, i788 int, i789 int, i790
241
int, i791 int, i792 int, i793 int, i794 int, i795 int, i796 int, i797 int, i798
242
int, i799 int, i800 int, i801 int, i802 int, i803 int, i804 int, i805 int, i806
243
int, i807 int, i808 int, i809 int, i810 int, i811 int, i812 int, i813 int, i814
244
int, i815 int, i816 int, i817 int, i818 int, i819 int, i820 int, i821 int, i822
245
int, i823 int, i824 int, i825 int, i826 int, i827 int, i828 int, i829 int, i830
246
int, i831 int, i832 int, i833 int, i834 int, i835 int, i836 int, i837 int, i838
247
int, i839 int, i840 int, i841 int, i842 int, i843 int, i844 int, i845 int, i846
248
int, i847 int, i848 int, i849 int, i850 int, i851 int, i852 int, i853 int, i854
249
int, i855 int, i856 int, i857 int, i858 int, i859 int, i860 int, i861 int, i862
250
int, i863 int, i864 int, i865 int, i866 int, i867 int, i868 int, i869 int, i870
251
int, i871 int, i872 int, i873 int, i874 int, i875 int, i876 int, i877 int, i878
252
int, i879 int, i880 int, i881 int, i882 int, i883 int, i884 int, i885 int, i886
253
int, i887 int, i888 int, i889 int, i890 int, i891 int, i892 int, i893 int, i894
254
int, i895 int, i896 int, i897 int, i898 int, i899 int, i900 int, i901 int, i902
255
int, i903 int, i904 int, i905 int, i906 int, i907 int, i908 int, i909 int, i910
256
int, i911 int, i912 int, i913 int, i914 int, i915 int, i916 int, i917 int, i918
257
int, i919 int, i920 int, i921 int, i922 int, i923 int, i924 int, i925 int, i926
258
int, i927 int, i928 int, i929 int, i930 int, i931 int, i932 int, i933 int, i934
259
int, i935 int, i936 int, i937 int, i938 int, i939 int, i940 int, i941 int, i942
260
int, i943 int, i944 int, i945 int, i946 int, i947 int, i948 int, i949 int, i950
261
int, i951 int, i952 int, i953 int, i954 int, i955 int, i956 int, i957 int, i958
262
int, i959 int, i960 int, i961 int, i962 int, i963 int, i964 int, i965 int, i966
263
int, i967 int, i968 int, i969 int, i970 int, i971 int, i972 int, i973 int, i974
264
int, i975 int, i976 int, i977 int, i978 int, i979 int, i980 int, i981 int, i982
265
int, i983 int, i984 int, i985 int, i986 int, i987 int, i988 int, i989 int, i990
266
int, i991 int, i992 int, i993 int, i994 int, i995 int, i996 int, i997 int, i998
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
267
int, i999 int, i1000 int, b blob) engine=myisam row_format=dynamic;
1 by brian
clean slate
268
insert into t1 values (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
269
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
270
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
271
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
272
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
273
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
274
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
275
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
276
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
277
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
278
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
279
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
280
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
281
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
282
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
283
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
284
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
285
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
286
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
287
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
288
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
289
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
290
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
291
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
292
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
293
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
294
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
295
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
296
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
297
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
298
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
299
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
300
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
301
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
302
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
303
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
304
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
305
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
306
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, "Sergei");
307
update t1 set b=repeat('a',256);
308
update t1 set i1=0, i2=0, i3=0, i4=0, i5=0, i6=0, i7=0;
309
check table t1;
310
delete from t1 where i8=1;
311
select i1,i2 from t1;
312
check table t1;
313
drop table t1;
314
315
#
316
# Test of REPAIR that once failed
317
#
318
CREATE TABLE `t1` (
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
319
  `post_id` int NOT NULL auto_increment,
320
  `topic_id` int NOT NULL default '0',
873.1.2 by Jay Pipes
Fixed Field_datetime to never accept any bad datetimes as a string. This broke
321
  `post_time` datetime,
1 by brian
clean slate
322
  `post_text` text NOT NULL,
323
  `icon_url` varchar(10) NOT NULL default '',
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
324
  `sign` int NOT NULL default '0',
1 by brian
clean slate
325
  `post_edit` varchar(150) NOT NULL default '',
326
  `poster_login` varchar(35) NOT NULL default '',
327
  `ip` varchar(15) NOT NULL default '',
328
  PRIMARY KEY  (`post_id`),
329
  KEY `post_time` (`post_time`),
330
  KEY `ip` (`ip`),
331
  KEY `poster_login` (`poster_login`),
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
332
  KEY `topic_id` (`topic_id`)
333
#  FULLTEXT KEY `post_text` (`post_text`)
1 by brian
clean slate
334
) ENGINE=MyISAM;
335
336
INSERT INTO t1 (post_text) VALUES ('ceci est un test'),('ceci est un test'),('ceci est un test'),('ceci est un test'),('ceci est un test');
337
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
338
# @TODO The REPAIR TABLE statement crashes server.
339
# Bug#309802: https://bugs.launchpad.net/drizzle/+bug/309802
340
# Commenting it out for now to proceed in testing. - JRP
341
# REPAIR TABLE t1;
1 by brian
clean slate
342
CHECK TABLE t1;
343
drop table t1;
344
345
#
346
# Test of creating table with too long key
347
#
348
349
--error 1071
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
350
CREATE TABLE t1 (a varchar(300), b varchar(300), c varchar(300), d varchar(300), e varchar(300), KEY t1 (a, b, c, d, e)) ENGINE=MyISAM;
351
CREATE TABLE t1 (a varchar(300), b varchar(300), c varchar(300), d varchar(300), e varchar(300)) ENGINE=MyISAM;
1 by brian
clean slate
352
--error 1071
353
ALTER TABLE t1 ADD INDEX t1 (a, b, c, d, e);
354
DROP TABLE t1;
355
356
#
357
# Test of cardinality of keys with NULL
358
#
359
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
360
CREATE TABLE t1 (a int not null, b int, c int, key(b), key(c), key(a,b), key(c,a)) ENGINE=MyISAM;
1 by brian
clean slate
361
INSERT into t1 values (0, null, 0), (0, null, 1), (0, null, 2), (0, null,3), (1,1,4);
362
create table t2 (a int not null, b int, c int, key(b), key(c), key(a));
363
INSERT into t2 values (1,1,1), (2,2,2);
364
optimize table t1;
365
show index from t1;
366
explain select * from t1,t2 where t1.a=t2.a;
367
explain select * from t1,t2 force index(a) where t1.a=t2.a;
368
explain select * from t1 force index(a),t2 force index(a) where t1.a=t2.a;
369
explain select * from t1,t2 where t1.b=t2.b;
370
explain select * from t1,t2 force index(c) where t1.a=t2.a;
371
explain select * from t1 where a=0 or a=2;
372
explain select * from t1 force index (a) where a=0 or a=2;
373
explain select * from t1 where c=1;
374
explain select * from t1 use index() where c=1;
375
drop table t1,t2;
376
377
#
378
# Test bug when updating a split dynamic row where keys are not changed
379
#
380
381
create table t1 (a int not null auto_increment primary key, b varchar(255));
382
insert into t1 (b) values (repeat('a',100)),(repeat('b',100)),(repeat('c',100));
383
update t1 set b=repeat(left(b,1),200) where a=1;
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
384
385
# @TODO Because there are no notes on what the heck this
386
# is actually testing (which bug?), it's difficult to tell
387
# what the below DELETE statement is doing.  Since we don't
388
# support bitwise operators, I am replacing the delete statement
389
# with a version we support.
390
#delete from t1 where (a & 1)= 0;
391
delete from t1 where (a mod 2) = 0;
1 by brian
clean slate
392
update t1 set b=repeat('e',200) where a=1;
393
flush tables;
394
check table t1;
395
396
#
397
# check updating with keys
398
#
399
400
disable_query_log;
401
let $1 = 100;
402
while ($1)
403
{
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
404
  eval insert into t1 (b) values (repeat(char
405
    (
406
      if($1 < 32, 0, 
407
        if($1 >= 64 and $1 <= 95, 0, 32)
408
      )
409
    +65), $1));
1 by brian
clean slate
410
  dec $1;
411
}
412
enable_query_log;
413
update t1 set b=repeat(left(b,1),255) where a between 1 and 5;
414
update t1 set b=repeat(left(b,1),10) where a between 32 and 43;
415
update t1 set b=repeat(left(b,1),2) where a between 64 and 66;
416
update t1 set b=repeat(left(b,1),65) where a between 67 and 70;
417
check table t1;
418
insert into t1 (b) values (repeat('z',100));
419
update t1 set b="test" where left(b,1) > 'n';
420
check table t1;
421
drop table t1;
422
423
#
424
# two bugs in myisam-space-stripping feature
425
#
426
create table t1 ( a text not null, key a (a(20)));
427
insert into t1 values ('aaa   '),('aaa'),('aa');
428
check table t1;
429
repair table t1;
430
select concat(a,'.') from t1 where a='aaa';
431
select concat(a,'.') from t1 where binary a='aaa';
432
update t1 set a='bbb' where a='aaa';
433
select concat(a,'.') from t1;
434
drop table t1;
435
436
#
437
# Third bug in the same code (BUG#2295)
438
#
439
440
create table t1(a text not null, b text not null, c text not null, index (a(10),b(10),c(10)));
441
insert into t1 values('807780', '477', '165');
442
insert into t1 values('807780', '477', '162');
443
insert into t1 values('807780', '472', '162');
444
select * from t1 where a='807780' and b='477' and c='165';
445
drop table t1;
446
447
#
448
# space-stripping in _mi_prefix_search: BUG#5284
449
#
450
DROP TABLE IF EXISTS t1;
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
451
CREATE TABLE t1 (a varchar(150) NOT NULL, KEY (a)) ENGINE=MyISAM; 
1 by brian
clean slate
452
INSERT t1 VALUES ("can \tcan"); 
453
INSERT t1 VALUES ("can   can"); 
454
INSERT t1 VALUES ("can"); 
455
SELECT * FROM t1;
456
CHECK TABLE t1;
457
DROP TABLE t1;
458
459
#
460
# Verify blob handling
461
#
462
create table t1 (a blob);
463
insert into t1 values('a '),('a');
464
select concat(a,'.') from t1 where a='a';
465
select concat(a,'.') from t1 where a='a ';
466
alter table t1 add key(a(2));
467
select concat(a,'.') from t1 where a='a';
468
select concat(a,'.') from t1 where a='a ';
469
drop table t1;
470
471
#
472
# Test text and unique
473
#
474
create table t1 (a int not null auto_increment primary key, b text not null, unique b (b(20)));
475
insert into t1 (b) values ('a'),('b'),('c');
476
select concat(b,'.') from t1;
477
update t1 set b='b ' where a=2;
478
--error ER_DUP_ENTRY
479
update t1 set b='b  ' where a > 1;
480
--error ER_DUP_ENTRY
481
insert into t1 (b) values ('b');
482
select * from t1;
483
delete from t1 where b='b';
484
select a,concat(b,'.') from t1;
485
drop table t1;
486
487
#
488
# Test keys with 0 segments. (Bug #3203)
489
#
490
create table t1 (a int not null);
491
create table t2 (a int not null, primary key (a));
492
insert into t1 values (1);
493
insert into t2 values (1),(2);
494
select sql_big_result distinct t1.a from t1,t2 order by t2.a;
495
select distinct t1.a from t1,t2 order by t2.a;
496
select sql_big_result distinct t1.a from t1,t2;
497
explain select sql_big_result distinct t1.a from t1,t2 order by t2.a;
498
explain select distinct t1.a from t1,t2 order by t2.a;
499
drop table t1,t2;
500
501
#
502
# Bug#14616 - Freshly imported table returns error 124 when using LIMIT
503
#
504
create table t1 (
505
  c1 varchar(32),
506
  key (c1)
507
) engine=myisam;
508
alter table t1 disable keys;
509
insert into t1 values ('a'), ('b');
510
select c1 from t1 order by c1 limit 1;
511
drop table t1;
512
513
#
514
# Bug #14400  Join could miss concurrently inserted row
515
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
516
# @TODO The below test hangs drizzle. Commenting out for now so I can continue with this test. - JRP
517
#
1 by brian
clean slate
518
# Partial key.
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
519
#create table t1 (a int not null, primary key(a));
520
#create table t2 (a int not null, b int not null, primary key(a,b));
521
#insert into t1 values (1),(2),(3),(4),(5),(6);
522
#insert into t2 values (1,1),(2,1);
523
#lock tables t1 read local, t2 read local;
524
#select straight_join * from t1,t2 force index (primary) where t1.a=t2.a;
525
#connect (root,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
526
#insert into t2 values(2,0);
527
#disconnect root;
528
#connection default;
529
#select straight_join * from t1,t2 force index (primary) where t1.a=t2.a;
530
#unlock tables;
531
#drop table t1,t2;
1 by brian
clean slate
532
#
533
# Full key.
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
534
#CREATE TABLE t1 (c1 varchar(250) NOT NULL);
535
#CREATE TABLE t2 (c1 varchar(250) NOT NULL, PRIMARY KEY (c1));
536
#INSERT INTO t1 VALUES ('test000001'), ('test000002'), ('test000003');
537
#INSERT INTO t2 VALUES ('test000002'), ('test000003'), ('test000004');
538
#LOCK TABLES t1 READ LOCAL, t2 READ LOCAL;
539
#SELECT t1.c1 AS t1c1, t2.c1 AS t2c1 FROM t1, t2
540
#  WHERE t1.c1 = t2.c1 HAVING t1c1 != t2c1;
541
#connect (con1,localhost,root,,);
542
#connection con1;
543
#INSERT INTO t2 VALUES ('test000001'), ('test000005');
544
#disconnect con1;
545
#connection default;
546
#SELECT t1.c1 AS t1c1, t2.c1 AS t2c1 FROM t1, t2
547
#  WHERE t1.c1 = t2.c1 HAVING t1c1 != t2c1;
548
#UNLOCK TABLES;
549
#DROP TABLE t1,t2;
1 by brian
clean slate
550
551
# End of 4.0 tests
552
553
create table t1 (a int, b varchar(200), c text not null) checksum=1;
554
create table t2 (a int, b varchar(200), c text not null) checksum=0;
555
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
556
insert t2 select * from t1;
557
checksum table t1, t2, t3 quick;
558
checksum table t1, t2, t3;
559
checksum table t1, t2, t3 extended;
560
#show table status;
561
drop table t1,t2;
562
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
563
#@TODO Figure out what the heck the below is testing.
564
#      It bombs the test with unknown system variables...
565
#
566
#create table t1 (a int, key (a));
567
#show keys from t1;
568
#alter table t1 disable keys;
569
#show keys from t1;
570
#create table t2 (a int);
571
#let $i=1000;
572
#set @@rand_seed1=31415926,@@rand_seed2=2718281828;
573
#--disable_query_log
574
#while ($i)
575
#{
576
#  dec $i;
577
#  insert t2 values (rand()*100000);
578
#}
579
#--enable_query_log
580
#insert t1 select * from t2;
581
#show keys from t1;
582
#alter table t1 enable keys;
583
#show keys from t1;
584
#alter table t1 engine=heap;
585
#alter table t1 disable keys;
586
#show keys from t1;
587
#drop table t1,t2;
1 by brian
clean slate
588
589
#
590
# index search for NULL in blob. Bug #4816
591
#
592
create table t1 ( a tinytext, b char(1), index idx (a(1),b) );
593
insert into t1 values (null,''), (null,'');
594
explain select count(*) from t1 where a is null;
595
select count(*) from t1 where a is null;
596
drop table t1;
597
598
#
599
# bug9188 - Corruption Can't open file: 'table.MYI' (errno: 145)
600
#
601
create table t1 (c1 int, c2 varchar(4) not null default '',
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
602
                 key(c2(3)));
1 by brian
clean slate
603
insert into t1 values (1,'A'), (2, 'B'), (3, 'A');
604
update t1 set c2='A  B' where c1=2;
605
check table t1;
606
drop table t1;
607
608
609
#
610
# Bug#12296 - CHECKSUM TABLE reports 0 for the table
611
# This happened if the first record was marked as deleted.
612
#
613
create table t1 (c1 int);
614
insert into t1 values (1),(2),(3),(4);
615
checksum table t1;
616
delete from t1 where c1 = 1;
617
create table t2 as select * from t1;
618
# The following returns 0 with the bug in place.
619
checksum table t1;
620
# The above should give the same number as the following.
621
checksum table t2;
622
drop table t1, t2;
623
624
#
625
# BUG#12232: New myisam_stats_method variable.
626
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
627
# @TODO The following segfaults. Disabling for now - JRP
628
#
629
#show variables like 'myisam_stats_method';
630
#
631
#create table t1 (a int, key(a));
632
#insert into t1 values (0),(1),(2),(3),(4);
633
#insert into t1 select NULL from t1;
1 by brian
clean slate
634
635
# default: NULLs considered inequal
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
636
#analyze table t1; 
637
#show index from t1;
638
#insert into t1 values (11);
639
#delete from t1 where a=11;
640
#check table t1;
641
#show index from t1;
1 by brian
clean slate
642
643
# Set nulls to be equal:
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
644
#set myisam_stats_method=nulls_equal;
645
#show variables like 'myisam_stats_method';
646
#insert into t1 values (11);
647
#delete from t1 where a=11;
648
649
#analyze table t1; 
650
#show index from t1;
651
#
652
#insert into t1 values (11);
653
#delete from t1 where a=11;
654
#
655
#check table t1;
656
#show index from t1;
657
#
1 by brian
clean slate
658
# Set nulls back to be equal 
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
659
#set myisam_stats_method=DEFAULT;
660
#show variables like 'myisam_stats_method';
661
#insert into t1 values (11);
662
#delete from t1 where a=11;
663
#
664
#analyze table t1; 
665
#show index from t1;
666
#
667
#insert into t1 values (11);
668
#delete from t1 where a=11;
669
#
670
#check table t1;
671
#show index from t1;
672
#
673
#drop table t1;
1 by brian
clean slate
674
675
# WL#2609, CSC#XXXX: MyISAM 
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
676
#set myisam_stats_method=nulls_ignored;
677
#show variables like 'myisam_stats_method';
678
#
679
#create table t1 (
680
#  a char(3), b char(4), c char(5), d char(6),
681
#  key(a,b,c,d)
682
#);
683
#insert into t1 values ('bcd','def1', NULL, 'zz');
684
#insert into t1 values ('bcd','def2', NULL, 'zz');
685
#insert into t1 values ('bce','def1', 'yuu', NULL);
686
#insert into t1 values ('bce','def2', NULL, 'quux');
687
#analyze table t1;
688
#show index from t1;
689
#delete from t1;
690
#analyze table t1;
691
#show index from t1;
692
#
693
#set myisam_stats_method=DEFAULT;
694
#drop table t1;
1 by brian
clean slate
695
696
# BUG#13814 - key value packed incorrectly for TINYBLOBs
697
698
create table t1(
699
  cip INT NOT NULL,
700
  score INT NOT NULL DEFAULT 0,
701
  bob TINYBLOB
702
);
703
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
704
insert into t1 (cip) VALUES (1), (2), (3);
705
insert into t1 (cip, bob) VALUES (4, 'a' ), (5, 'b'), 
706
                                       (6, 'c');
1 by brian
clean slate
707
select * from t1 where bob is null and cip=1;
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
708
create index bug on t1 (bob(22), cip);
1 by brian
clean slate
709
select * from t1 where bob is null and cip=1;
710
drop table t1;
711
712
#
713
# Bug#14980 - COUNT(*) incorrect on MyISAM table with certain INDEX
714
#
715
create table t1 (
716
  id1 int not null auto_increment,
717
  id2 int not null default '0',
718
  t text not null,
719
  primary key  (id1),
720
  key x (id2, t(32))
721
) engine=myisam;
722
insert into t1 (id2, t) values
723
(10, 'abc'), (10, 'abc'), (10, 'abc'),
724
(20, 'abc'), (20, 'abc'), (20, 'def'),
725
(10, 'abc'), (10, 'abc');
726
select count(*)   from t1 where id2 = 10;
727
select count(id1) from t1 where id2 = 10;
728
drop table t1;
729
730
#
731
# BUG##20357 - Got error 124 from storage engine using MIN and MAX functions
732
#              in queries
733
#
396 by Brian Aker
Cleanup tiny and small int.
734
CREATE TABLE t1(a int, KEY(a)) ENGINE=MyISAM;
1 by brian
clean slate
735
INSERT INTO t1 VALUES(1);
736
SELECT MAX(a) FROM t1 IGNORE INDEX(a);
737
ALTER TABLE t1 DISABLE KEYS;
738
SELECT MAX(a) FROM t1;
739
SELECT MAX(a) FROM t1 IGNORE INDEX(a);
740
DROP TABLE t1;
741
742
#
743
# BUG#18036 - update of table joined to self reports table as crashed
744
#
745
CREATE TABLE t1(a CHAR(9), b VARCHAR(7)) ENGINE=MyISAM;
746
INSERT INTO t1(a) VALUES('xxxxxxxxx'),('xxxxxxxxx');
747
UPDATE t1 AS ta1,t1 AS ta2 SET ta1.b='aaaaaa',ta2.b='bbbbbb';
748
SELECT * FROM t1;
749
DROP TABLE t1;
750
751
#
752
# Bug#8283 - OPTIMIZE TABLE causes data loss
753
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
754
SET GLOBAL myisam_repair_threads=2;
1 by brian
clean slate
755
SHOW VARIABLES LIKE 'myisam_repair%';
756
#
757
# Test OPTIMIZE. This creates a new data file.
758
CREATE TABLE t1 (
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
759
  `_id` int NOT NULL default '0',
1 by brian
clean slate
760
  `url` text,
761
  `email` text,
762
  `description` text,
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
763
  `loverlap` int default NULL,
764
  `roverlap` int default NULL,
765
  `lneighbor_id` int default NULL,
766
  `rneighbor_id` int default NULL,
767
  `length_` int default NULL,
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
768
  `sequence` text,
1 by brian
clean slate
769
  `name` text,
770
  `_obj_class` text NOT NULL,
771
  PRIMARY KEY  (`_id`),
772
  UNIQUE KEY `sequence_name_index` (`name`(50)),
773
  KEY (`length_`)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
774
) ENGINE=MyISAM;
775
1 by brian
clean slate
776
INSERT INTO t1 VALUES
777
  (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample1',''),
778
  (2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample2',''),
779
  (3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample3',''),
780
  (4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample4',''),
781
  (5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample5',''),
782
  (6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample6',''),
783
  (7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample7',''),
784
  (8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample8',''),
785
  (9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample9','');
786
#
787
SELECT _id FROM t1;
788
DELETE FROM t1 WHERE _id < 8;
789
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
790
SHOW TABLE STATUS LIKE 't1';
791
CHECK TABLE t1 EXTENDED;
792
OPTIMIZE TABLE t1;
793
CHECK TABLE t1 EXTENDED;
794
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
795
SHOW TABLE STATUS LIKE 't1';
796
SELECT _id FROM t1;
797
DROP TABLE t1;
798
#
799
# Test REPAIR QUICK. This retains the old data file.
800
CREATE TABLE t1 (
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
801
  `_id` int NOT NULL default '0',
1 by brian
clean slate
802
  `url` text,
803
  `email` text,
804
  `description` text,
685.4.13 by Jay Pipes
OLAP test now fixed. We throw a syntax error upon seeing WITH CUBE, not
805
  `loverlap` int default NULL,
806
  `roverlap` int default NULL,
807
  `lneighbor_id` int default NULL,
808
  `rneighbor_id` int default NULL,
809
  `length_` int default NULL,
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
810
  `sequence` text,
1 by brian
clean slate
811
  `name` text,
812
  `_obj_class` text NOT NULL,
813
  PRIMARY KEY  (`_id`),
814
  UNIQUE KEY `sequence_name_index` (`name`(50)),
815
  KEY (`length_`)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
816
) ENGINE=MyISAM;
817
1 by brian
clean slate
818
INSERT INTO t1 VALUES
819
  (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample1',''),
820
  (2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample2',''),
821
  (3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample3',''),
822
  (4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample4',''),
823
  (5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample5',''),
824
  (6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample6',''),
825
  (7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample7',''),
826
  (8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample8',''),
827
  (9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample9','');
828
#
829
SELECT _id FROM t1;
830
DELETE FROM t1 WHERE _id < 8;
831
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
832
SHOW TABLE STATUS LIKE 't1';
833
CHECK TABLE t1 EXTENDED;
834
REPAIR TABLE t1 QUICK;
835
CHECK TABLE t1 EXTENDED;
836
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
837
SHOW TABLE STATUS LIKE 't1';
838
SELECT _id FROM t1;
839
DROP TABLE t1;
840
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
841
SET GLOBAL myisam_repair_threads=1;
1 by brian
clean slate
842
SHOW VARIABLES LIKE 'myisam_repair%';
843
844
#
845
# BUG#21310 - Trees in SQL causing a "crashed" table with MyISAM storage
846
#             engine
847
#
848
849
# A simplified test case that reflect crashed table issue.
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
850
CREATE TABLE t1(a VARCHAR(16)) ENGINE=MyISAM;
1 by brian
clean slate
851
INSERT INTO t1 VALUES('aaaaaaaa'),(NULL);
852
UPDATE t1 AS ta1, t1 AS ta2 SET ta1.a='aaaaaaaaaaaaaaaa';
853
SELECT * FROM t1;
854
DROP TABLE t1;
855
856
# A test case that reflect wrong result set.
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
857
CREATE TABLE t1(a INT) ENGINE=MyISAM;
1 by brian
clean slate
858
INSERT INTO t1 VALUES(1),(2);
859
UPDATE t1,t1 AS t2 SET t1.a=t1.a+2 WHERE t1.a=t2.a-1;
860
SELECT * FROM t1 ORDER BY a;
861
DROP TABLE t1;
862
863
#
864
# Bug#24607 - MyISAM pointer size determined incorrectly
865
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
866
CREATE TABLE t1 (c1 TEXT) ENGINE=MyISAM AVG_ROW_LENGTH=70100 MAX_ROWS=4100100100;
1 by brian
clean slate
867
--replace_column 5 X 6 X 7 X 9 X 10 X 11 X 12 X 13 X 14 X 16 X
868
SHOW TABLE STATUS LIKE 't1';
869
DROP TABLE t1;
870
871
#
872
# Bug#26231 - select count(*) on myisam table returns wrong value
873
#             when index is used
874
#
875
CREATE TABLE t1 (c1 TEXT NOT NULL, KEY c1 (c1(10))) ENGINE=MyISAM;
876
# Fill at least two key blocks. "Tab, A" must be in both blocks. 
877
INSERT INTO t1 VALUES
878
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
879
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
880
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
881
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
882
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
883
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
884
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
885
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
886
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
887
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
888
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
889
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
890
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
891
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
892
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
893
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
894
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
895
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
896
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
897
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
898
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
899
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
900
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
901
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
902
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
903
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
904
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
905
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
906
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
907
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
908
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
909
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
910
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
911
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
912
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
913
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
914
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
915
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
916
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
917
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
918
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
919
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
920
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
921
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
922
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
923
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
924
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
925
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
926
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
927
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
928
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
929
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
930
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
931
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
932
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
933
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
934
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
935
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
936
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
937
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
938
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
939
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
940
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
941
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
942
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
943
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
944
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
945
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
946
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
947
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
948
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
949
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
950
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
951
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
952
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
953
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
954
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
955
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
956
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
957
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
958
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
959
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
960
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
961
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
962
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
963
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
964
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
965
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
966
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
967
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
968
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
969
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
970
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
971
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
972
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
973
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
974
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
975
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
976
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
977
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
978
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
979
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
980
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
981
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
982
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
983
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
984
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
985
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
986
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
987
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
988
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
989
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
990
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
991
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
992
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
993
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
994
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
995
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
996
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
997
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
998
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
999
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1000
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1001
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1002
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1003
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1004
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1005
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1006
  (''), (''), (''), (''),
1007
  (' B'), (' B'), (' B'), (' B');
1008
SELECT DISTINCT COUNT(*) FROM t1 WHERE c1 = '';
1009
SELECT DISTINCT length(c1), c1 FROM t1 WHERE c1 = '';
1010
SELECT DISTINCT COUNT(*) FROM t1 IGNORE INDEX (c1) WHERE c1 = '';
1011
SELECT DISTINCT length(c1), c1 FROM t1 IGNORE INDEX (c1) WHERE c1 = '';
1012
SELECT DISTINCT length(c1), c1 FROM t1 ORDER BY c1;
1013
DROP TABLE t1;
1014
1015
--echo End of 4.1 tests
1016
1017
1018
# Test varchar
1019
#
1020
1021
let $default=`select @@storage_engine`;
1022
set storage_engine=MyISAM;
1023
source include/varchar.inc;
1024
1025
#
1026
# Some errors/warnings on create
1027
#
1028
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1029
--error 1074
1 by brian
clean slate
1030
create table t1 (v varchar(65530), key(v));
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1031
--error 1074
1 by brian
clean slate
1032
create table t1 (v varchar(65536));
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1033
--error 1074
1034
create table t1 (v varchar(65530));
1 by brian
clean slate
1035
1036
# MyISAM specific varchar tests
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1037
--error 1074
1 by brian
clean slate
1038
create table t1 (v varchar(65535));
1039
1040
eval set storage_engine=$default;
1041
1042
#
1043
# Test concurrent insert
1044
# First with static record length
1045
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1046
#@TODO The below test fails with unknown system variable
1047
#      concurrent_insert
1048
#
1049
#set @save_concurrent_insert=@@concurrent_insert;
1050
#set global concurrent_insert=1;
1051
#create table t1 (a int);
1052
#insert into t1 values (1),(2),(3),(4),(5);
1053
#lock table t1 read local;
1054
#connect (con1,localhost,root,,);
1055
#connection con1;
1 by brian
clean slate
1056
# Insert in table without hole
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1057
#insert into t1 values(6),(7);
1058
#connection default;
1059
#unlock tables;
1060
#delete from t1 where a>=3 and a<=4;
1061
#lock table t1 read local;
1062
#connection con1;
1063
#set global concurrent_insert=2;
1 by brian
clean slate
1064
# Insert in table with hole -> Should insert at end
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1065
#insert into t1 values (8),(9);
1066
#connection default;
1067
#unlock tables;
1 by brian
clean slate
1068
# Insert into hole
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1069
#insert into t1 values (10),(11),(12);
1070
#select * from t1;
1071
#check table t1;
1072
#drop table t1;
1073
#disconnect con1;
1 by brian
clean slate
1074
1075
# Same test with dynamic record length
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1076
#create table t1 (a int, b varchar(30) default "hello");
1077
#insert into t1 (a) values (1),(2),(3),(4),(5);
1078
#lock table t1 read local;
1079
#connect (con1,localhost,root,,);
1080
#connection con1;
1 by brian
clean slate
1081
# Insert in table without hole
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1082
#insert into t1 (a) values(6),(7);
1083
#connection default;
1084
#unlock tables;
1085
#delete from t1 where a>=3 and a<=4;
1086
#lock table t1 read local;
1087
#connection con1;
1088
#set global concurrent_insert=2;
1089
## Insert in table with hole -> Should insert at end
1090
#insert into t1 (a) values (8),(9);
1091
#connection default;
1092
#unlock tables;
1 by brian
clean slate
1093
# Insert into hole
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1094
#insert into t1 (a) values (10),(11),(12);
1095
#select a from t1;
1096
#check table t1;
1097
#drop table t1;
1098
#disconnect con1;
1099
#set global concurrent_insert=@save_concurrent_insert;
1 by brian
clean slate
1100
1101
1102
# BUG#9622 - ANALYZE TABLE and ALTER TABLE .. ENABLE INDEX produce
1103
# different statistics on the same table with NULL values.
1104
create table t1 (a int, key(a));
1105
1106
insert into t1 values (1),(2),(3),(4),(NULL),(NULL),(NULL),(NULL);
1107
analyze table t1;
1108
show keys from t1;
1109
1110
alter table t1 disable keys;
1111
alter table t1 enable keys;
1112
show keys from t1;
1113
1114
drop table t1;
1115
1116
1117
#
1118
# Bug#10056 - PACK_KEYS option take values greater than 1 while creating table
1119
#
1120
create table t1 (c1 int) engine=myisam pack_keys=0;
1121
create table t2 (c1 int) engine=myisam pack_keys=1;
1122
create table t3 (c1 int) engine=myisam pack_keys=default;
1123
--error 1064
1124
create table t4 (c1 int) engine=myisam pack_keys=2;
1125
drop table t1, t2, t3;
1126
1127
1128
#
1129
# Bug#28476: force index on a disabled myisam index gives error 124
1130
#
1131
CREATE TABLE t1(a INT, b INT, KEY inx (a), UNIQUE KEY uinx (b)) ENGINE=MyISAM;
1132
INSERT INTO t1(a,b) VALUES (1,1),(2,2),(3,3),(4,4),(5,5);
1133
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1134
ALTER TABLE t1 DISABLE KEYS;
1135
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1136
SELECT a FROM t1 USE INDEX (inx) WHERE a=1;
1137
SELECT b FROM t1 FORCE INDEX (uinx) WHERE b=1;
1138
SELECT b FROM t1 USE INDEX (uinx) WHERE b=1;
1139
SELECT a FROM t1 FORCE INDEX (inx,uinx) WHERE a=1;
1140
ALTER TABLE t1 ENABLE KEYS;
1141
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1142
DROP TABLE t1;
1143
1144
#
1145
# Bug#4692 - DISABLE/ENABLE KEYS waste a space
1146
#
1147
CREATE TABLE t1 (c1 INT, c2 INT, UNIQUE INDEX (c1), INDEX (c2)) ENGINE=MYISAM;
1148
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1149
SHOW TABLE STATUS LIKE 't1';
1150
INSERT INTO t1 VALUES (1,1);
1151
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1152
SHOW TABLE STATUS LIKE 't1';
1153
ALTER TABLE t1 DISABLE KEYS;
1154
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1155
SHOW TABLE STATUS LIKE 't1';
1156
ALTER TABLE t1 ENABLE KEYS;
1157
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1158
SHOW TABLE STATUS LIKE 't1';
1159
ALTER TABLE t1 DISABLE KEYS;
1160
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1161
SHOW TABLE STATUS LIKE 't1';
1162
ALTER TABLE t1 ENABLE KEYS;
1163
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1164
SHOW TABLE STATUS LIKE 't1';
1165
#--exec ls -log var/master-data/test/t1.MYI
1166
#--exec myisamchk -dvv var/master-data/test/t1.MYI
1167
#--exec myisamchk -iev var/master-data/test/t1.MYI
1168
--echo # Enable keys with parallel repair
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1169
SET GLOBAL myisam_repair_threads=2;
1 by brian
clean slate
1170
ALTER TABLE t1 DISABLE KEYS;
1171
ALTER TABLE t1 ENABLE KEYS;
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1172
SET GLOBAL myisam_repair_threads=1;
1 by brian
clean slate
1173
CHECK TABLE t1 EXTENDED;
1174
DROP TABLE t1;
1175
1176
#
1177
# Bug#28837: MyISAM storage engine error (134) doing delete with self-join
1178
#
1179
1180
CREATE TABLE t1 (id int NOT NULL, ref int NOT NULL, INDEX (id)) ENGINE=MyISAM;
1181
CREATE TABLE t2 LIKE t1;
1182
1183
INSERT INTO t2 (id, ref) VALUES (1,3), (2,1), (3,2), (4,5), (4,4);
1184
INSERT INTO t1 SELECT * FROM t2;
1185
1186
SELECT * FROM t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
1187
SELECT * FROM t1;
1188
DELETE FROM a USING t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
1189
SELECT * FROM t1;
1190
1191
DROP TABLE t1, t2;
1192
1193
--echo End of 5.0 tests
1194
1195
1196
#
1197
# Test of key_block_size
1198
#
1199
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1200
create table t1 (a int not null, key `a` (a) key_block_size=1024) ENGINE=MyISAM;
1201
show create table t1;
1202
drop table t1;
1203
1204
create table t1 (a int not null, key `a` (a) key_block_size=2048) ENGINE=MyISAM;
1205
show create table t1;
1206
drop table t1;
1207
1208
create table t1 (a varchar(2048), key `a` (a)) ENGINE=MyISAM;
1209
show create table t1;
1210
drop table t1;
1211
1212
create table t1 (a varchar(2048), key `a` (a) key_block_size=1024) ENGINE=MyISAM;
1213
show create table t1;
1214
drop table t1;
1215
1216
create table t1 (a int not null, b varchar(2048), key (a), key(b)) ENGINE=MyISAM key_block_size=1024;
1 by brian
clean slate
1217
show create table t1;
1218
alter table t1 key_block_size=2048;
1219
show create table t1;
1220
alter table t1 add c int, add key (c);
1221
show create table t1;
1222
alter table t1 key_block_size=0;
1223
alter table t1 add d int, add key (d);
1224
show create table t1;
1225
drop table t1;
1226
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1227
create table t1 (a int not null, b varchar(2048), key (a), key(b)) ENGINE=MyISAM key_block_size=8192;
1228
show create table t1;
1229
drop table t1;
1230
1231
create table t1 (a int not null, b varchar(2048), key (a) key_block_size=1024, key(b)) ENGINE=MyISAM key_block_size=8192;
1232
show create table t1;
1233
drop table t1;
1234
1235
create table t1 (a int not null, b int, key (a) key_block_size=1024, key(b) key_block_size=8192) ENGINE=MyISAM key_block_size=16384;
1 by brian
clean slate
1236
show create table t1;
1237
drop table t1;
1238
1239
1240
# Test limits and errors of key_block_size
1241
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1242
create table t1 (a int not null, key `a` (a) key_block_size=512) ENGINE=MyISAM;
1243
show create table t1;
1244
drop table t1;
1245
1246
create table t1 (a varchar(2048), key `a` (a) key_block_size=1000000000000000000) ENGINE=MyISAM;
1247
show create table t1;
1248
drop table t1;
1249
1250
create table t1 (a int not null, key `a` (a) key_block_size=1025) ENGINE=MyISAM;
1251
show create table t1;
1252
drop table t1;
1253
1254
--error 1064
1255
create table t1 (a int not null, key key_block_size=1024 (a)) ENGINE=MyISAM;
1256
--error 1064
1257
create table t1 (a int not null, key `a` key_block_size=1024 (a)) ENGINE=MyISAM;
1 by brian
clean slate
1258
1259
#
1260
# Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
1261
#
1262
CREATE TABLE t1 (
1263
  c1 INT,
1264
  c2 VARCHAR(300),
1265
  KEY (c1) KEY_BLOCK_SIZE 1024,
1266
  KEY (c2) KEY_BLOCK_SIZE 8192
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1267
  ) ENGINE=MyISAM;
1 by brian
clean slate
1268
INSERT INTO t1 VALUES (10, REPEAT('a', CEIL(RAND(10) * 300))),
1269
  (11, REPEAT('b', CEIL(RAND() * 300))),
1270
  (12, REPEAT('c', CEIL(RAND() * 300))),
1271
  (13, REPEAT('d', CEIL(RAND() * 300))),
1272
  (14, REPEAT('e', CEIL(RAND() * 300))),
1273
  (15, REPEAT('f', CEIL(RAND() * 300))),
1274
  (16, REPEAT('g', CEIL(RAND() * 300))),
1275
  (17, REPEAT('h', CEIL(RAND() * 300))),
1276
  (18, REPEAT('i', CEIL(RAND() * 300))),
1277
  (19, REPEAT('j', CEIL(RAND() * 300))),
1278
  (20, REPEAT('k', CEIL(RAND() * 300))),
1279
  (21, REPEAT('l', CEIL(RAND() * 300))),
1280
  (22, REPEAT('m', CEIL(RAND() * 300))),
1281
  (23, REPEAT('n', CEIL(RAND() * 300))),
1282
  (24, REPEAT('o', CEIL(RAND() * 300))),
1283
  (25, REPEAT('p', CEIL(RAND() * 300))),
1284
  (26, REPEAT('q', CEIL(RAND() * 300))),
1285
  (27, REPEAT('r', CEIL(RAND() * 300))),
1286
  (28, REPEAT('s', CEIL(RAND() * 300))),
1287
  (29, REPEAT('t', CEIL(RAND() * 300))),
1288
  (30, REPEAT('u', CEIL(RAND() * 300))),
1289
  (31, REPEAT('v', CEIL(RAND() * 300))),
1290
  (32, REPEAT('w', CEIL(RAND() * 300))),
1291
  (33, REPEAT('x', CEIL(RAND() * 300))),
1292
  (34, REPEAT('y', CEIL(RAND() * 300))),
1293
  (35, REPEAT('z', CEIL(RAND() * 300)));
1294
INSERT INTO t1 SELECT * FROM t1;
1295
INSERT INTO t1 SELECT * FROM t1;
1296
CHECK TABLE t1;
1297
REPAIR TABLE t1;
1298
DELETE FROM t1 WHERE c1 >= 10;
1299
CHECK TABLE t1;
1300
DROP TABLE t1;
1301
1302
#
1303
# Bug#33222 - myisam-table drops rows when column is added
1304
#             and a char-field > 128 exists
1305
#
1306
# Test #1 - CHECK TABLE sees wrong record, REPAR TABLE deletes it.
1307
# Using a CHAR column that can have > 127 characters.
1308
# Using a VARCHAR to create a table with dynamic row format.
1309
CREATE TABLE t1 (
1310
  c1 CHAR(130),
1311
  c2 VARCHAR(1)
1312
) ENGINE=MyISAM;
1313
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1314
SELECT COUNT(*) FROM t1;
1315
CHECK TABLE t1;
1316
REPAIR TABLE t1;
1317
SELECT COUNT(*) FROM t1;
1318
CHECK TABLE t1;
1319
DROP TABLE t1;
1320
#
1321
# Test #2 - same as test #1, but using EXTENDED.
1322
# Using a CHAR column that can have > 127 characters.
1323
# Using a VARCHAR to create a table with dynamic row format.
1324
CREATE TABLE t1 (
1325
  c1 CHAR(130),
1326
  c2 VARCHAR(1)
1327
) ENGINE=MyISAM;
1328
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1329
SELECT COUNT(*) FROM t1;
1330
CHECK TABLE t1 EXTENDED;
1331
REPAIR TABLE t1 EXTENDED;
1332
SELECT COUNT(*) FROM t1;
1333
CHECK TABLE t1 EXTENDED;
1334
DROP TABLE t1;
1335
#
1336
# Test #3 - same as test #1, but using OPTIMIZE TABLE.
1337
# Using a CHAR column that can have > 127 characters.
1338
# Using a VARCHAR to create a table with dynamic row format.
1339
CREATE TABLE t1 (
1340
  c1 CHAR(130),
1341
  c2 VARCHAR(1)
1342
) ENGINE=MyISAM;
1343
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1344
# Insert more rows and delete one in the middle to force optimize.
1345
INSERT INTO t1 VALUES('b', 'b');
1346
INSERT INTO t1 VALUES('c', 'b');
1347
DELETE FROM t1 WHERE c1='b';
1348
SELECT COUNT(*) FROM t1;
1349
OPTIMIZE TABLE t1;
1350
SELECT COUNT(*) FROM t1;
1351
DROP TABLE t1;
1352
#
1353
# Test #4 - ALTER TABLE deletes rows.
1354
# Using a CHAR column that can have > 127 characters.
1355
# Using a VARCHAR to create a table with dynamic row format.
1356
# Using an index which can be disabled during bulk insert.
1357
CREATE TABLE t1 (
1358
  c1 CHAR(130),
1359
  c2 VARCHAR(1),
1360
  KEY (c1)
1361
) ENGINE=MyISAM;
1362
#
1363
# Insert 100 rows. This turns bulk insert on during the copy phase of
1364
# ALTER TABLE. Bulk insert disables keys before the insert and re-enables
1365
# them by repair after the insert.
1366
--disable_query_log
1367
let $count= 100;
1368
--echo # Insert $count rows. Query log disabled.
1369
while ($count)
1370
{
1371
  INSERT INTO t1 VALUES ('a', 'b');
1372
  dec $count;
1373
}
1374
--enable_query_log
1375
#
1376
# Change most of the rows into long character values with > 127 characters.
1377
UPDATE t1 SET c1=REPEAT("a",128) LIMIT 90;
1378
SELECT COUNT(*) FROM t1;
1379
ALTER TABLE t1 ENGINE=MyISAM;
1380
#
1381
# With bug present, this shows that all long rows are gone.
1382
SELECT COUNT(*) FROM t1;
1383
CHECK TABLE t1;
1384
CHECK TABLE t1 EXTENDED;
1385
DROP TABLE t1;
1386
#
1387
# Test #5 - same as test #1 but UTF-8.
1388
# Using a CHAR column that can have > 127 characters.
1389
# Using a VARCHAR to create a table with dynamic row format.
1390
CREATE TABLE t1 (
1391
  c1 CHAR(50),
1392
  c2 VARCHAR(1)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1393
) ENGINE=MyISAM;
1 by brian
clean slate
1394
# Using Tamil Letter A, Unicode U+0B85
779.3.10 by Monty Taylor
Turned on -Wshadow.
1395
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1 by brian
clean slate
1396
SELECT COUNT(*) FROM t1;
1397
CHECK TABLE t1;
1398
REPAIR TABLE t1;
1399
SELECT COUNT(*) FROM t1;
1400
CHECK TABLE t1;
1401
DROP TABLE t1;
1402
#
1403
# Test #6 - same as test #2, but UTF-8.
1404
# Using a CHAR column that can have > 127 characters.
1405
# Using a VARCHAR to create a table with dynamic row format.
1406
CREATE TABLE t1 (
1407
  c1 CHAR(50),
1408
  c2 VARCHAR(1)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1409
) ENGINE=MyISAM;
1 by brian
clean slate
1410
# Using Tamil Letter A, Unicode U+0B85
779.3.10 by Monty Taylor
Turned on -Wshadow.
1411
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1 by brian
clean slate
1412
SELECT COUNT(*) FROM t1;
1413
CHECK TABLE t1 EXTENDED;
1414
REPAIR TABLE t1 EXTENDED;
1415
SELECT COUNT(*) FROM t1;
1416
CHECK TABLE t1 EXTENDED;
1417
DROP TABLE t1;
1418
#
1419
# Test #7 - same as test #3, but UTF-8.
1420
# Using a CHAR column that can have > 127 characters.
1421
# Using a VARCHAR to create a table with dynamic row format.
1422
CREATE TABLE t1 (
1423
  c1 CHAR(50),
1424
  c2 VARCHAR(1)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1425
) ENGINE=MyISAM;
1 by brian
clean slate
1426
# Using Tamil Letter A, Unicode U+0B85
779.3.10 by Monty Taylor
Turned on -Wshadow.
1427
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1 by brian
clean slate
1428
# Insert more rows and delete one in the middle to force optimize.
1429
INSERT INTO t1 VALUES('b', 'b');
1430
INSERT INTO t1 VALUES('c', 'b');
1431
DELETE FROM t1 WHERE c1='b';
1432
SELECT COUNT(*) FROM t1;
1433
OPTIMIZE TABLE t1;
1434
SELECT COUNT(*) FROM t1;
1435
DROP TABLE t1;
1436
#
1437
# Test #8 - same as test #4, but UTF-8.
1438
# Using a CHAR column that can have > 42 UTF-8 characters.
1439
# Using a VARCHAR to create a table with dynamic row format.
1440
# Using an index which can be disabled during bulk insert.
1441
CREATE TABLE t1 (
1442
  c1 CHAR(50),
1443
  c2 VARCHAR(1),
1444
  KEY (c1)
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1445
) ENGINE=MyISAM;
1 by brian
clean slate
1446
#
1447
# Insert 100 rows. This turns bulk insert on during the copy phase of
1448
# ALTER TABLE. Bulk insert disables keys before the insert and re-enables
1449
# them by repair after the insert.
1450
--disable_query_log
1451
let $count= 100;
1452
--echo # Insert $count rows. Query log disabled.
1453
while ($count)
1454
{
1455
  INSERT INTO t1 VALUES ('a', 'b');
1456
  dec $count;
1457
}
1458
--enable_query_log
1459
#
1460
# Change most of the rows into long character values with > 42 characters.
1461
# Using Tamil Letter A, Unicode U+0B85
779.3.10 by Monty Taylor
Turned on -Wshadow.
1462
UPDATE t1 SET c1=REPEAT( x'e0ae85',43) LIMIT 90;
1 by brian
clean slate
1463
SELECT COUNT(*) FROM t1;
1464
ALTER TABLE t1 ENGINE=MyISAM;
1465
#
1466
# With bug present, this shows that all long rows are gone.
1467
SELECT COUNT(*) FROM t1;
1468
CHECK TABLE t1;
1469
CHECK TABLE t1 EXTENDED;
1470
DROP TABLE t1;
1471
1472
#
1473
# Bug#29182 - MyISAMCHK reports wrong character set
1474
#
685.4.36 by Jay Pipes
Fixes for the myisam.test. This test is, IMHO, probably hopelessly broken anyway...
1475
#@TODO Disabling the below, as no myisamcheck program
1476
#CREATE TABLE t1 (
1477
#  c1 VARCHAR(10) NOT NULL,
1478
#  c2 CHAR(10) DEFAULT NULL,
1479
#  c3 VARCHAR(10) NOT NULL,
1480
#  KEY (c1),
1481
#  KEY (c2)
1482
#) ENGINE=MyISAM PACK_KEYS=0;
1483
#--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
1484
#--exec $DRIZZLECHK -d $MYSQLTEST_VARDIR/master-data/test/t1
1485
#DROP TABLE t1;
1486
#
1 by brian
clean slate
1487
--echo End of 5.1 tests
1488