~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam.test

  • Committer: Monty Taylor
  • Date: 2008-08-16 21:06:22 UTC
  • Revision ID: monty@inaugust.com-20080816210622-zpnn13unyinqzn72
Updated po files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
33
 
create table t1 (a int not null auto_increment, b blob not null, primary key (a));
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;
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;
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
 
#
93
 
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
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
267
 
int, i999 int, i1000 int, b blob) engine=myisam row_format=dynamic;
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` (
319
 
  `post_id` int NOT NULL auto_increment,
320
 
  `topic_id` int NOT NULL default '0',
321
 
  `post_time` datetime NOT NULL default '0000-00-00 00:00:00',
322
 
  `post_text` text NOT NULL,
323
 
  `icon_url` varchar(10) NOT NULL default '',
324
 
  `sign` int NOT NULL default '0',
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`),
332
 
  KEY `topic_id` (`topic_id`)
333
 
#  FULLTEXT KEY `post_text` (`post_text`)
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
 
 
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;
342
 
CHECK TABLE t1;
343
 
drop table t1;
344
 
 
345
 
#
346
 
# Test of creating table with too long key
347
 
#
348
 
 
349
 
--error 1071
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;
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
 
 
360
 
CREATE TABLE t1 (a int not null, b int, c int, key(b), key(c), key(a,b), key(c,a)) ENGINE=MyISAM;
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;
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;
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
 
{
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));
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;
451
 
CREATE TABLE t1 (a varchar(150) NOT NULL, KEY (a)) ENGINE=MyISAM; 
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
 
#
516
 
# @TODO The below test hangs drizzle. Commenting out for now so I can continue with this test. - JRP
517
 
#
518
 
# Partial key.
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;
532
 
#
533
 
# Full key.
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;
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
 
 
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;
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 '',
602
 
                 key(c2(3)));
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
 
#
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;
634
 
 
635
 
# default: NULLs considered inequal
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;
642
 
 
643
 
# Set nulls to be equal:
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
 
#
658
 
# Set nulls back to be equal 
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;
674
 
 
675
 
# WL#2609, CSC#XXXX: MyISAM 
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;
695
 
 
696
 
# BUG#13814 - key value packed incorrectly for TINYBLOBs
697
 
 
698
 
create table t1(
699
 
  cip INT NOT NULL,
700
 
  time TIME NOT NULL,
701
 
  score INT NOT NULL DEFAULT 0,
702
 
  bob TINYBLOB
703
 
);
704
 
 
705
 
insert into t1 (cip, time) VALUES (1, '00:01'), (2, '00:02'), (3,'00:03');
706
 
insert into t1 (cip, bob, time) VALUES (4, 'a', '00:04'), (5, 'b', '00:05'), 
707
 
                                       (6, 'c', '00:06');
708
 
select * from t1 where bob is null and cip=1;
709
 
create index bug on t1 (bob(22), cip, time);
710
 
select * from t1 where bob is null and cip=1;
711
 
drop table t1;
712
 
 
713
 
#
714
 
# Bug#14980 - COUNT(*) incorrect on MyISAM table with certain INDEX
715
 
#
716
 
create table t1 (
717
 
  id1 int not null auto_increment,
718
 
  id2 int not null default '0',
719
 
  t text not null,
720
 
  primary key  (id1),
721
 
  key x (id2, t(32))
722
 
) engine=myisam;
723
 
insert into t1 (id2, t) values
724
 
(10, 'abc'), (10, 'abc'), (10, 'abc'),
725
 
(20, 'abc'), (20, 'abc'), (20, 'def'),
726
 
(10, 'abc'), (10, 'abc');
727
 
select count(*)   from t1 where id2 = 10;
728
 
select count(id1) from t1 where id2 = 10;
729
 
drop table t1;
730
 
 
731
 
#
732
 
# BUG##20357 - Got error 124 from storage engine using MIN and MAX functions
733
 
#              in queries
734
 
#
735
 
CREATE TABLE t1(a int, KEY(a)) ENGINE=MyISAM;
736
 
INSERT INTO t1 VALUES(1);
737
 
SELECT MAX(a) FROM t1 IGNORE INDEX(a);
738
 
ALTER TABLE t1 DISABLE KEYS;
739
 
SELECT MAX(a) FROM t1;
740
 
SELECT MAX(a) FROM t1 IGNORE INDEX(a);
741
 
DROP TABLE t1;
742
 
 
743
 
#
744
 
# BUG#18036 - update of table joined to self reports table as crashed
745
 
#
746
 
CREATE TABLE t1(a CHAR(9), b VARCHAR(7)) ENGINE=MyISAM;
747
 
INSERT INTO t1(a) VALUES('xxxxxxxxx'),('xxxxxxxxx');
748
 
UPDATE t1 AS ta1,t1 AS ta2 SET ta1.b='aaaaaa',ta2.b='bbbbbb';
749
 
SELECT * FROM t1;
750
 
DROP TABLE t1;
751
 
 
752
 
#
753
 
# Bug#8283 - OPTIMIZE TABLE causes data loss
754
 
#
755
 
SET GLOBAL myisam_repair_threads=2;
756
 
SHOW VARIABLES LIKE 'myisam_repair%';
757
 
#
758
 
# Test OPTIMIZE. This creates a new data file.
759
 
CREATE TABLE t1 (
760
 
  `_id` int NOT NULL default '0',
761
 
  `url` text,
762
 
  `email` text,
763
 
  `description` text,
764
 
  `loverlap` int default NULL,
765
 
  `roverlap` int default NULL,
766
 
  `lneighbor_id` int default NULL,
767
 
  `rneighbor_id` int default NULL,
768
 
  `length_` int default NULL,
769
 
  `sequence` text,
770
 
  `name` text,
771
 
  `_obj_class` text NOT NULL,
772
 
  PRIMARY KEY  (`_id`),
773
 
  UNIQUE KEY `sequence_name_index` (`name`(50)),
774
 
  KEY (`length_`)
775
 
) ENGINE=MyISAM;
776
 
 
777
 
INSERT INTO t1 VALUES
778
 
  (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample1',''),
779
 
  (2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample2',''),
780
 
  (3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample3',''),
781
 
  (4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample4',''),
782
 
  (5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample5',''),
783
 
  (6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample6',''),
784
 
  (7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample7',''),
785
 
  (8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample8',''),
786
 
  (9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample9','');
787
 
#
788
 
SELECT _id FROM t1;
789
 
DELETE FROM t1 WHERE _id < 8;
790
 
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
791
 
SHOW TABLE STATUS LIKE 't1';
792
 
CHECK TABLE t1 EXTENDED;
793
 
OPTIMIZE TABLE t1;
794
 
CHECK TABLE t1 EXTENDED;
795
 
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
796
 
SHOW TABLE STATUS LIKE 't1';
797
 
SELECT _id FROM t1;
798
 
DROP TABLE t1;
799
 
#
800
 
# Test REPAIR QUICK. This retains the old data file.
801
 
CREATE TABLE t1 (
802
 
  `_id` int NOT NULL default '0',
803
 
  `url` text,
804
 
  `email` text,
805
 
  `description` text,
806
 
  `loverlap` int default NULL,
807
 
  `roverlap` int default NULL,
808
 
  `lneighbor_id` int default NULL,
809
 
  `rneighbor_id` int default NULL,
810
 
  `length_` int default NULL,
811
 
  `sequence` text,
812
 
  `name` text,
813
 
  `_obj_class` text NOT NULL,
814
 
  PRIMARY KEY  (`_id`),
815
 
  UNIQUE KEY `sequence_name_index` (`name`(50)),
816
 
  KEY (`length_`)
817
 
) ENGINE=MyISAM;
818
 
 
819
 
INSERT INTO t1 VALUES
820
 
  (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample1',''),
821
 
  (2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample2',''),
822
 
  (3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample3',''),
823
 
  (4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample4',''),
824
 
  (5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample5',''),
825
 
  (6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample6',''),
826
 
  (7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample7',''),
827
 
  (8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample8',''),
828
 
  (9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sample9','');
829
 
#
830
 
SELECT _id FROM t1;
831
 
DELETE FROM t1 WHERE _id < 8;
832
 
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
833
 
SHOW TABLE STATUS LIKE 't1';
834
 
CHECK TABLE t1 EXTENDED;
835
 
REPAIR TABLE t1 QUICK;
836
 
CHECK TABLE t1 EXTENDED;
837
 
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
838
 
SHOW TABLE STATUS LIKE 't1';
839
 
SELECT _id FROM t1;
840
 
DROP TABLE t1;
841
 
#
842
 
SET GLOBAL myisam_repair_threads=1;
843
 
SHOW VARIABLES LIKE 'myisam_repair%';
844
 
 
845
 
#
846
 
# BUG#21310 - Trees in SQL causing a "crashed" table with MyISAM storage
847
 
#             engine
848
 
#
849
 
 
850
 
# A simplified test case that reflect crashed table issue.
851
 
CREATE TABLE t1(a VARCHAR(16)) ENGINE=MyISAM;
852
 
INSERT INTO t1 VALUES('aaaaaaaa'),(NULL);
853
 
UPDATE t1 AS ta1, t1 AS ta2 SET ta1.a='aaaaaaaaaaaaaaaa';
854
 
SELECT * FROM t1;
855
 
DROP TABLE t1;
856
 
 
857
 
# A test case that reflect wrong result set.
858
 
CREATE TABLE t1(a INT) ENGINE=MyISAM;
859
 
INSERT INTO t1 VALUES(1),(2);
860
 
UPDATE t1,t1 AS t2 SET t1.a=t1.a+2 WHERE t1.a=t2.a-1;
861
 
SELECT * FROM t1 ORDER BY a;
862
 
DROP TABLE t1;
863
 
 
864
 
#
865
 
# Bug#24607 - MyISAM pointer size determined incorrectly
866
 
#
867
 
CREATE TABLE t1 (c1 TEXT) ENGINE=MyISAM AVG_ROW_LENGTH=70100 MAX_ROWS=4100100100;
868
 
--replace_column 5 X 6 X 7 X 9 X 10 X 11 X 12 X 13 X 14 X 16 X
869
 
SHOW TABLE STATUS LIKE 't1';
870
 
DROP TABLE t1;
871
 
 
872
 
#
873
 
# Bug#26231 - select count(*) on myisam table returns wrong value
874
 
#             when index is used
875
 
#
876
 
CREATE TABLE t1 (c1 TEXT NOT NULL, KEY c1 (c1(10))) ENGINE=MyISAM;
877
 
# Fill at least two key blocks. "Tab, A" must be in both blocks. 
878
 
INSERT INTO t1 VALUES
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
 
  (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)), (CHAR(9,65)),
1007
 
  (''), (''), (''), (''),
1008
 
  (' B'), (' B'), (' B'), (' B');
1009
 
SELECT DISTINCT COUNT(*) FROM t1 WHERE c1 = '';
1010
 
SELECT DISTINCT length(c1), c1 FROM t1 WHERE c1 = '';
1011
 
SELECT DISTINCT COUNT(*) FROM t1 IGNORE INDEX (c1) WHERE c1 = '';
1012
 
SELECT DISTINCT length(c1), c1 FROM t1 IGNORE INDEX (c1) WHERE c1 = '';
1013
 
SELECT DISTINCT length(c1), c1 FROM t1 ORDER BY c1;
1014
 
DROP TABLE t1;
1015
 
 
1016
 
--echo End of 4.1 tests
1017
 
 
1018
 
 
1019
 
# Test varchar
1020
 
#
1021
 
 
1022
 
let $default=`select @@storage_engine`;
1023
 
set storage_engine=MyISAM;
1024
 
source include/varchar.inc;
1025
 
 
1026
 
#
1027
 
# Some errors/warnings on create
1028
 
#
1029
 
 
1030
 
--error 1074
1031
 
create table t1 (v varchar(65530), key(v));
1032
 
--error 1074
1033
 
create table t1 (v varchar(65536));
1034
 
--error 1074
1035
 
create table t1 (v varchar(65530));
1036
 
 
1037
 
# MyISAM specific varchar tests
1038
 
--error 1074
1039
 
create table t1 (v varchar(65535));
1040
 
 
1041
 
eval set storage_engine=$default;
1042
 
 
1043
 
#
1044
 
# Test concurrent insert
1045
 
# First with static record length
1046
 
#
1047
 
#@TODO The below test fails with unknown system variable
1048
 
#      concurrent_insert
1049
 
#
1050
 
#set @save_concurrent_insert=@@concurrent_insert;
1051
 
#set global concurrent_insert=1;
1052
 
#create table t1 (a int);
1053
 
#insert into t1 values (1),(2),(3),(4),(5);
1054
 
#lock table t1 read local;
1055
 
#connect (con1,localhost,root,,);
1056
 
#connection con1;
1057
 
# Insert in table without hole
1058
 
#insert into t1 values(6),(7);
1059
 
#connection default;
1060
 
#unlock tables;
1061
 
#delete from t1 where a>=3 and a<=4;
1062
 
#lock table t1 read local;
1063
 
#connection con1;
1064
 
#set global concurrent_insert=2;
1065
 
# Insert in table with hole -> Should insert at end
1066
 
#insert into t1 values (8),(9);
1067
 
#connection default;
1068
 
#unlock tables;
1069
 
# Insert into hole
1070
 
#insert into t1 values (10),(11),(12);
1071
 
#select * from t1;
1072
 
#check table t1;
1073
 
#drop table t1;
1074
 
#disconnect con1;
1075
 
 
1076
 
# Same test with dynamic record length
1077
 
#create table t1 (a int, b varchar(30) default "hello");
1078
 
#insert into t1 (a) values (1),(2),(3),(4),(5);
1079
 
#lock table t1 read local;
1080
 
#connect (con1,localhost,root,,);
1081
 
#connection con1;
1082
 
# Insert in table without hole
1083
 
#insert into t1 (a) values(6),(7);
1084
 
#connection default;
1085
 
#unlock tables;
1086
 
#delete from t1 where a>=3 and a<=4;
1087
 
#lock table t1 read local;
1088
 
#connection con1;
1089
 
#set global concurrent_insert=2;
1090
 
## Insert in table with hole -> Should insert at end
1091
 
#insert into t1 (a) values (8),(9);
1092
 
#connection default;
1093
 
#unlock tables;
1094
 
# Insert into hole
1095
 
#insert into t1 (a) values (10),(11),(12);
1096
 
#select a from t1;
1097
 
#check table t1;
1098
 
#drop table t1;
1099
 
#disconnect con1;
1100
 
#set global concurrent_insert=@save_concurrent_insert;
1101
 
 
1102
 
 
1103
 
# BUG#9622 - ANALYZE TABLE and ALTER TABLE .. ENABLE INDEX produce
1104
 
# different statistics on the same table with NULL values.
1105
 
create table t1 (a int, key(a));
1106
 
 
1107
 
insert into t1 values (1),(2),(3),(4),(NULL),(NULL),(NULL),(NULL);
1108
 
analyze table t1;
1109
 
show keys from t1;
1110
 
 
1111
 
alter table t1 disable keys;
1112
 
alter table t1 enable keys;
1113
 
show keys from t1;
1114
 
 
1115
 
drop table t1;
1116
 
 
1117
 
 
1118
 
#
1119
 
# Bug#10056 - PACK_KEYS option take values greater than 1 while creating table
1120
 
#
1121
 
create table t1 (c1 int) engine=myisam pack_keys=0;
1122
 
create table t2 (c1 int) engine=myisam pack_keys=1;
1123
 
create table t3 (c1 int) engine=myisam pack_keys=default;
1124
 
--error 1064
1125
 
create table t4 (c1 int) engine=myisam pack_keys=2;
1126
 
drop table t1, t2, t3;
1127
 
 
1128
 
 
1129
 
#
1130
 
# Bug#28476: force index on a disabled myisam index gives error 124
1131
 
#
1132
 
CREATE TABLE t1(a INT, b INT, KEY inx (a), UNIQUE KEY uinx (b)) ENGINE=MyISAM;
1133
 
INSERT INTO t1(a,b) VALUES (1,1),(2,2),(3,3),(4,4),(5,5);
1134
 
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1135
 
ALTER TABLE t1 DISABLE KEYS;
1136
 
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1137
 
SELECT a FROM t1 USE INDEX (inx) WHERE a=1;
1138
 
SELECT b FROM t1 FORCE INDEX (uinx) WHERE b=1;
1139
 
SELECT b FROM t1 USE INDEX (uinx) WHERE b=1;
1140
 
SELECT a FROM t1 FORCE INDEX (inx,uinx) WHERE a=1;
1141
 
ALTER TABLE t1 ENABLE KEYS;
1142
 
SELECT a FROM t1 FORCE INDEX (inx) WHERE a=1;
1143
 
DROP TABLE t1;
1144
 
 
1145
 
#
1146
 
# Bug#4692 - DISABLE/ENABLE KEYS waste a space
1147
 
#
1148
 
CREATE TABLE t1 (c1 INT, c2 INT, UNIQUE INDEX (c1), INDEX (c2)) ENGINE=MYISAM;
1149
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1150
 
SHOW TABLE STATUS LIKE 't1';
1151
 
INSERT INTO t1 VALUES (1,1);
1152
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1153
 
SHOW TABLE STATUS LIKE 't1';
1154
 
ALTER TABLE t1 DISABLE KEYS;
1155
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1156
 
SHOW TABLE STATUS LIKE 't1';
1157
 
ALTER TABLE t1 ENABLE KEYS;
1158
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1159
 
SHOW TABLE STATUS LIKE 't1';
1160
 
ALTER TABLE t1 DISABLE KEYS;
1161
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1162
 
SHOW TABLE STATUS LIKE 't1';
1163
 
ALTER TABLE t1 ENABLE KEYS;
1164
 
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
1165
 
SHOW TABLE STATUS LIKE 't1';
1166
 
#--exec ls -log var/master-data/test/t1.MYI
1167
 
#--exec myisamchk -dvv var/master-data/test/t1.MYI
1168
 
#--exec myisamchk -iev var/master-data/test/t1.MYI
1169
 
--echo # Enable keys with parallel repair
1170
 
SET GLOBAL myisam_repair_threads=2;
1171
 
ALTER TABLE t1 DISABLE KEYS;
1172
 
ALTER TABLE t1 ENABLE KEYS;
1173
 
SET GLOBAL myisam_repair_threads=1;
1174
 
CHECK TABLE t1 EXTENDED;
1175
 
DROP TABLE t1;
1176
 
 
1177
 
#
1178
 
# Bug#28837: MyISAM storage engine error (134) doing delete with self-join
1179
 
#
1180
 
 
1181
 
CREATE TABLE t1 (id int NOT NULL, ref int NOT NULL, INDEX (id)) ENGINE=MyISAM;
1182
 
CREATE TABLE t2 LIKE t1;
1183
 
 
1184
 
INSERT INTO t2 (id, ref) VALUES (1,3), (2,1), (3,2), (4,5), (4,4);
1185
 
INSERT INTO t1 SELECT * FROM t2;
1186
 
 
1187
 
SELECT * FROM t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
1188
 
SELECT * FROM t1;
1189
 
DELETE FROM a USING t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
1190
 
SELECT * FROM t1;
1191
 
 
1192
 
DROP TABLE t1, t2;
1193
 
 
1194
 
--echo End of 5.0 tests
1195
 
 
1196
 
 
1197
 
#
1198
 
# Test of key_block_size
1199
 
#
1200
 
 
1201
 
create table t1 (a int not null, key `a` (a) key_block_size=1024) ENGINE=MyISAM;
1202
 
show create table t1;
1203
 
drop table t1;
1204
 
 
1205
 
create table t1 (a int not null, key `a` (a) key_block_size=2048) ENGINE=MyISAM;
1206
 
show create table t1;
1207
 
drop table t1;
1208
 
 
1209
 
create table t1 (a varchar(2048), key `a` (a)) ENGINE=MyISAM;
1210
 
show create table t1;
1211
 
drop table t1;
1212
 
 
1213
 
create table t1 (a varchar(2048), key `a` (a) key_block_size=1024) ENGINE=MyISAM;
1214
 
show create table t1;
1215
 
drop table t1;
1216
 
 
1217
 
create table t1 (a int not null, b varchar(2048), key (a), key(b)) ENGINE=MyISAM key_block_size=1024;
1218
 
show create table t1;
1219
 
alter table t1 key_block_size=2048;
1220
 
show create table t1;
1221
 
alter table t1 add c int, add key (c);
1222
 
show create table t1;
1223
 
alter table t1 key_block_size=0;
1224
 
alter table t1 add d int, add key (d);
1225
 
show create table t1;
1226
 
drop table t1;
1227
 
 
1228
 
create table t1 (a int not null, b varchar(2048), key (a), key(b)) ENGINE=MyISAM key_block_size=8192;
1229
 
show create table t1;
1230
 
drop table t1;
1231
 
 
1232
 
create table t1 (a int not null, b varchar(2048), key (a) key_block_size=1024, key(b)) ENGINE=MyISAM key_block_size=8192;
1233
 
show create table t1;
1234
 
drop table t1;
1235
 
 
1236
 
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;
1237
 
show create table t1;
1238
 
drop table t1;
1239
 
 
1240
 
 
1241
 
# Test limits and errors of key_block_size
1242
 
 
1243
 
create table t1 (a int not null, key `a` (a) key_block_size=512) ENGINE=MyISAM;
1244
 
show create table t1;
1245
 
drop table t1;
1246
 
 
1247
 
create table t1 (a varchar(2048), key `a` (a) key_block_size=1000000000000000000) ENGINE=MyISAM;
1248
 
show create table t1;
1249
 
drop table t1;
1250
 
 
1251
 
create table t1 (a int not null, key `a` (a) key_block_size=1025) ENGINE=MyISAM;
1252
 
show create table t1;
1253
 
drop table t1;
1254
 
 
1255
 
--error 1064
1256
 
create table t1 (a int not null, key key_block_size=1024 (a)) ENGINE=MyISAM;
1257
 
--error 1064
1258
 
create table t1 (a int not null, key `a` key_block_size=1024 (a)) ENGINE=MyISAM;
1259
 
 
1260
 
#
1261
 
# Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
1262
 
#
1263
 
CREATE TABLE t1 (
1264
 
  c1 INT,
1265
 
  c2 VARCHAR(300),
1266
 
  KEY (c1) KEY_BLOCK_SIZE 1024,
1267
 
  KEY (c2) KEY_BLOCK_SIZE 8192
1268
 
  ) ENGINE=MyISAM;
1269
 
INSERT INTO t1 VALUES (10, REPEAT('a', CEIL(RAND(10) * 300))),
1270
 
  (11, REPEAT('b', CEIL(RAND() * 300))),
1271
 
  (12, REPEAT('c', CEIL(RAND() * 300))),
1272
 
  (13, REPEAT('d', CEIL(RAND() * 300))),
1273
 
  (14, REPEAT('e', CEIL(RAND() * 300))),
1274
 
  (15, REPEAT('f', CEIL(RAND() * 300))),
1275
 
  (16, REPEAT('g', CEIL(RAND() * 300))),
1276
 
  (17, REPEAT('h', CEIL(RAND() * 300))),
1277
 
  (18, REPEAT('i', CEIL(RAND() * 300))),
1278
 
  (19, REPEAT('j', CEIL(RAND() * 300))),
1279
 
  (20, REPEAT('k', CEIL(RAND() * 300))),
1280
 
  (21, REPEAT('l', CEIL(RAND() * 300))),
1281
 
  (22, REPEAT('m', CEIL(RAND() * 300))),
1282
 
  (23, REPEAT('n', CEIL(RAND() * 300))),
1283
 
  (24, REPEAT('o', CEIL(RAND() * 300))),
1284
 
  (25, REPEAT('p', CEIL(RAND() * 300))),
1285
 
  (26, REPEAT('q', CEIL(RAND() * 300))),
1286
 
  (27, REPEAT('r', CEIL(RAND() * 300))),
1287
 
  (28, REPEAT('s', CEIL(RAND() * 300))),
1288
 
  (29, REPEAT('t', CEIL(RAND() * 300))),
1289
 
  (30, REPEAT('u', CEIL(RAND() * 300))),
1290
 
  (31, REPEAT('v', CEIL(RAND() * 300))),
1291
 
  (32, REPEAT('w', CEIL(RAND() * 300))),
1292
 
  (33, REPEAT('x', CEIL(RAND() * 300))),
1293
 
  (34, REPEAT('y', CEIL(RAND() * 300))),
1294
 
  (35, REPEAT('z', CEIL(RAND() * 300)));
1295
 
INSERT INTO t1 SELECT * FROM t1;
1296
 
INSERT INTO t1 SELECT * FROM t1;
1297
 
CHECK TABLE t1;
1298
 
REPAIR TABLE t1;
1299
 
DELETE FROM t1 WHERE c1 >= 10;
1300
 
CHECK TABLE t1;
1301
 
DROP TABLE t1;
1302
 
 
1303
 
#
1304
 
# Bug#33222 - myisam-table drops rows when column is added
1305
 
#             and a char-field > 128 exists
1306
 
#
1307
 
# Test #1 - CHECK TABLE sees wrong record, REPAR TABLE deletes it.
1308
 
# Using a CHAR column that can have > 127 characters.
1309
 
# Using a VARCHAR to create a table with dynamic row format.
1310
 
CREATE TABLE t1 (
1311
 
  c1 CHAR(130),
1312
 
  c2 VARCHAR(1)
1313
 
) ENGINE=MyISAM;
1314
 
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1315
 
SELECT COUNT(*) FROM t1;
1316
 
CHECK TABLE t1;
1317
 
REPAIR TABLE t1;
1318
 
SELECT COUNT(*) FROM t1;
1319
 
CHECK TABLE t1;
1320
 
DROP TABLE t1;
1321
 
#
1322
 
# Test #2 - same as test #1, but using EXTENDED.
1323
 
# Using a CHAR column that can have > 127 characters.
1324
 
# Using a VARCHAR to create a table with dynamic row format.
1325
 
CREATE TABLE t1 (
1326
 
  c1 CHAR(130),
1327
 
  c2 VARCHAR(1)
1328
 
) ENGINE=MyISAM;
1329
 
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1330
 
SELECT COUNT(*) FROM t1;
1331
 
CHECK TABLE t1 EXTENDED;
1332
 
REPAIR TABLE t1 EXTENDED;
1333
 
SELECT COUNT(*) FROM t1;
1334
 
CHECK TABLE t1 EXTENDED;
1335
 
DROP TABLE t1;
1336
 
#
1337
 
# Test #3 - same as test #1, but using OPTIMIZE TABLE.
1338
 
# Using a CHAR column that can have > 127 characters.
1339
 
# Using a VARCHAR to create a table with dynamic row format.
1340
 
CREATE TABLE t1 (
1341
 
  c1 CHAR(130),
1342
 
  c2 VARCHAR(1)
1343
 
) ENGINE=MyISAM;
1344
 
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1345
 
# Insert more rows and delete one in the middle to force optimize.
1346
 
INSERT INTO t1 VALUES('b', 'b');
1347
 
INSERT INTO t1 VALUES('c', 'b');
1348
 
DELETE FROM t1 WHERE c1='b';
1349
 
SELECT COUNT(*) FROM t1;
1350
 
OPTIMIZE TABLE t1;
1351
 
SELECT COUNT(*) FROM t1;
1352
 
DROP TABLE t1;
1353
 
#
1354
 
# Test #4 - ALTER TABLE deletes rows.
1355
 
# Using a CHAR column that can have > 127 characters.
1356
 
# Using a VARCHAR to create a table with dynamic row format.
1357
 
# Using an index which can be disabled during bulk insert.
1358
 
CREATE TABLE t1 (
1359
 
  c1 CHAR(130),
1360
 
  c2 VARCHAR(1),
1361
 
  KEY (c1)
1362
 
) ENGINE=MyISAM;
1363
 
#
1364
 
# Insert 100 rows. This turns bulk insert on during the copy phase of
1365
 
# ALTER TABLE. Bulk insert disables keys before the insert and re-enables
1366
 
# them by repair after the insert.
1367
 
--disable_query_log
1368
 
let $count= 100;
1369
 
--echo # Insert $count rows. Query log disabled.
1370
 
while ($count)
1371
 
{
1372
 
  INSERT INTO t1 VALUES ('a', 'b');
1373
 
  dec $count;
1374
 
}
1375
 
--enable_query_log
1376
 
#
1377
 
# Change most of the rows into long character values with > 127 characters.
1378
 
UPDATE t1 SET c1=REPEAT("a",128) LIMIT 90;
1379
 
SELECT COUNT(*) FROM t1;
1380
 
ALTER TABLE t1 ENGINE=MyISAM;
1381
 
#
1382
 
# With bug present, this shows that all long rows are gone.
1383
 
SELECT COUNT(*) FROM t1;
1384
 
CHECK TABLE t1;
1385
 
CHECK TABLE t1 EXTENDED;
1386
 
DROP TABLE t1;
1387
 
#
1388
 
# Test #5 - same as test #1 but UTF-8.
1389
 
# Using a CHAR column that can have > 127 characters.
1390
 
# Using a VARCHAR to create a table with dynamic row format.
1391
 
CREATE TABLE t1 (
1392
 
  c1 CHAR(50),
1393
 
  c2 VARCHAR(1)
1394
 
) ENGINE=MyISAM;
1395
 
# Using Tamil Letter A, Unicode U+0B85
1396
 
INSERT INTO t1 VALUES(REPEAT(_utf8 x'e0ae85',43), 'b');
1397
 
SELECT COUNT(*) FROM t1;
1398
 
CHECK TABLE t1;
1399
 
REPAIR TABLE t1;
1400
 
SELECT COUNT(*) FROM t1;
1401
 
CHECK TABLE t1;
1402
 
DROP TABLE t1;
1403
 
#
1404
 
# Test #6 - same as test #2, but UTF-8.
1405
 
# Using a CHAR column that can have > 127 characters.
1406
 
# Using a VARCHAR to create a table with dynamic row format.
1407
 
CREATE TABLE t1 (
1408
 
  c1 CHAR(50),
1409
 
  c2 VARCHAR(1)
1410
 
) ENGINE=MyISAM;
1411
 
# Using Tamil Letter A, Unicode U+0B85
1412
 
INSERT INTO t1 VALUES(REPEAT(_utf8 x'e0ae85',43), 'b');
1413
 
SELECT COUNT(*) FROM t1;
1414
 
CHECK TABLE t1 EXTENDED;
1415
 
REPAIR TABLE t1 EXTENDED;
1416
 
SELECT COUNT(*) FROM t1;
1417
 
CHECK TABLE t1 EXTENDED;
1418
 
DROP TABLE t1;
1419
 
#
1420
 
# Test #7 - same as test #3, but UTF-8.
1421
 
# Using a CHAR column that can have > 127 characters.
1422
 
# Using a VARCHAR to create a table with dynamic row format.
1423
 
CREATE TABLE t1 (
1424
 
  c1 CHAR(50),
1425
 
  c2 VARCHAR(1)
1426
 
) ENGINE=MyISAM;
1427
 
# Using Tamil Letter A, Unicode U+0B85
1428
 
INSERT INTO t1 VALUES(REPEAT(_utf8 x'e0ae85',43), 'b');
1429
 
# Insert more rows and delete one in the middle to force optimize.
1430
 
INSERT INTO t1 VALUES('b', 'b');
1431
 
INSERT INTO t1 VALUES('c', 'b');
1432
 
DELETE FROM t1 WHERE c1='b';
1433
 
SELECT COUNT(*) FROM t1;
1434
 
OPTIMIZE TABLE t1;
1435
 
SELECT COUNT(*) FROM t1;
1436
 
DROP TABLE t1;
1437
 
#
1438
 
# Test #8 - same as test #4, but UTF-8.
1439
 
# Using a CHAR column that can have > 42 UTF-8 characters.
1440
 
# Using a VARCHAR to create a table with dynamic row format.
1441
 
# Using an index which can be disabled during bulk insert.
1442
 
CREATE TABLE t1 (
1443
 
  c1 CHAR(50),
1444
 
  c2 VARCHAR(1),
1445
 
  KEY (c1)
1446
 
) ENGINE=MyISAM;
1447
 
#
1448
 
# Insert 100 rows. This turns bulk insert on during the copy phase of
1449
 
# ALTER TABLE. Bulk insert disables keys before the insert and re-enables
1450
 
# them by repair after the insert.
1451
 
--disable_query_log
1452
 
let $count= 100;
1453
 
--echo # Insert $count rows. Query log disabled.
1454
 
while ($count)
1455
 
{
1456
 
  INSERT INTO t1 VALUES ('a', 'b');
1457
 
  dec $count;
1458
 
}
1459
 
--enable_query_log
1460
 
#
1461
 
# Change most of the rows into long character values with > 42 characters.
1462
 
# Using Tamil Letter A, Unicode U+0B85
1463
 
UPDATE t1 SET c1=REPEAT(_utf8 x'e0ae85',43) LIMIT 90;
1464
 
SELECT COUNT(*) FROM t1;
1465
 
ALTER TABLE t1 ENGINE=MyISAM;
1466
 
#
1467
 
# With bug present, this shows that all long rows are gone.
1468
 
SELECT COUNT(*) FROM t1;
1469
 
CHECK TABLE t1;
1470
 
CHECK TABLE t1 EXTENDED;
1471
 
DROP TABLE t1;
1472
 
 
1473
 
#
1474
 
# Bug#29182 - MyISAMCHK reports wrong character set
1475
 
#
1476
 
#@TODO Disabling the below, as no myisamcheck program
1477
 
#CREATE TABLE t1 (
1478
 
#  c1 VARCHAR(10) NOT NULL,
1479
 
#  c2 CHAR(10) DEFAULT NULL,
1480
 
#  c3 VARCHAR(10) NOT NULL,
1481
 
#  KEY (c1),
1482
 
#  KEY (c2)
1483
 
#) ENGINE=MyISAM PACK_KEYS=0;
1484
 
#--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
1485
 
#--exec $DRIZZLECHK -d $MYSQLTEST_VARDIR/master-data/test/t1
1486
 
#DROP TABLE t1;
1487
 
#
1488
 
--echo End of 5.1 tests
1489