~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam.test

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-17 00:08:20 UTC
  • mto: (1126.9.3 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090917000820-urd6p46qngi1okjp
Updated calls to some dtrace probes to cast the parameter to const char *
appropriately. Also, removed the additional variable in places that I was
using.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
# Test bug: Two optimize in a row reset index cardinality
61
61
#
62
62
 
63
 
create TEMPORARY table t1 (a int not null auto_increment, b int not null, primary key (a), index(b)) ENGINE=MYISAM;
 
63
create table t1 (a int not null auto_increment, b int not null, primary key (a), index(b));
64
64
insert into t1 (b) values (1),(2),(2),(2),(2);
65
 
alter table t1 engine=MYISAM;
 
65
optimize table t1;
66
66
show index from t1;
67
 
alter table t1 engine=MyISAM;
 
67
optimize table t1;
68
68
show index from t1;
69
69
drop table t1;
70
70
 
89
89
# in ha_myisam::repair, and index size is changed (decreased).
90
90
#
91
91
 
92
 
create temporary table t1 ( t1 char(255), key(t1(250))) ENGINE=MYISAM;
 
92
create table t1 ( t1 char(255), key(t1(250)));
93
93
insert t1 values ('137513751375137513751375137513751375137569516951695169516951695169516951695169');
94
94
insert t1 values ('178417841784178417841784178417841784178403420342034203420342034203420342034203');
95
95
insert t1 values ('213872387238723872387238723872387238723867376737673767376737673767376737673767');
119
119
insert t1 values ('70'), ('84'), ('60'), ('20'), ('76'), ('89'), ('49'), ('50'),
120
120
('88'), ('61'), ('42'), ('98'), ('39'), ('30'), ('25'), ('66'), ('61'), ('48'),
121
121
('80'), ('84'), ('98'), ('19'), ('91'), ('42'), ('47');
122
 
alter table t1 ENGINE=myisam;
 
122
optimize table t1;
123
123
check table t1;
124
124
drop table t1;
125
125
 
344
344
INSERT into t1 values (0, null, 0), (0, null, 1), (0, null, 2), (0, null,3), (1,1,4);
345
345
create table t2 (a int not null, b int, c int, key(b), key(c), key(a));
346
346
INSERT into t2 values (1,1,1), (2,2,2);
347
 
alter table t1 ENGINE=MYISAM;
 
347
optimize table t1;
348
348
show index from t1;
349
349
explain select * from t1,t2 where t1.a=t2.a;
350
350
explain select * from t1,t2 force index(a) where t1.a=t2.a;
498
498
create table t2 (a int, b varchar(200), c text not null);
499
499
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
500
500
insert t2 select * from t1;
501
 
checksum table t1, t2, t3;
502
 
checksum table t1, t2, t3;
503
 
checksum table t1, t2, t3;
504
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
505
 
show table status;
 
501
checksum table t1, t2, t3 quick;
 
502
checksum table t1, t2, t3;
 
503
checksum table t1, t2, t3 extended;
 
504
#show table status;
506
505
drop table t1,t2;
507
506
 
508
507
#@TODO Figure out what the heck the below is testing.
526
525
#show keys from t1;
527
526
#alter table t1 enable keys;
528
527
#show keys from t1;
529
 
#alter table t1 engine=MEMORY;
 
528
#alter table t1 engine=heap;
530
529
#alter table t1 disable keys;
531
530
#show keys from t1;
532
531
#drop table t1,t2;
650
649
#
651
650
SELECT _id FROM t1;
652
651
DELETE FROM t1 WHERE _id < 8;
653
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
654
 
show table status LIKE 't1';
655
 
CHECK TABLE t1;
656
 
ALTER TABLE t1 ENGINE=MYISAM;
657
 
CHECK TABLE t1;
658
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
659
 
show table status LIKE 't1';
 
652
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
 
653
SHOW TABLE STATUS LIKE 't1';
 
654
CHECK TABLE t1 EXTENDED;
 
655
OPTIMIZE TABLE t1;
 
656
CHECK TABLE t1 EXTENDED;
 
657
--replace_column 6 # 7 # 8 # 9 # 11 # 12 # 13 # 14 # 15 # 16 #
 
658
SHOW TABLE STATUS LIKE 't1';
660
659
SELECT _id FROM t1;
661
660
DROP TABLE t1;
662
661
#
667
666
# Bug#24607 - MyISAM pointer size determined incorrectly
668
667
#
669
668
CREATE TEMPORARY TABLE t1 (c1 TEXT) ENGINE=MyISAM;
670
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
671
 
show table status like 't1';
 
669
--replace_column 5 X 6 X 7 X 9 X 10 X 11 X 12 X 13 X 14 X 16 X
 
670
SHOW TABLE STATUS LIKE 't1';
672
671
DROP TABLE t1;
673
672
 
674
673
#
879
878
# Bug#4692 - DISABLE/ENABLE KEYS waste a space
880
879
#
881
880
CREATE TEMPORARY TABLE t1 (c1 INT, c2 INT, UNIQUE INDEX (c1), INDEX (c2)) ENGINE=MYISAM;
882
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
883
 
show table status like 't1';
 
881
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
882
SHOW TABLE STATUS LIKE 't1';
884
883
INSERT INTO t1 VALUES (1,1);
885
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
886
 
show table status like 't1';
887
 
ALTER TABLE t1 DISABLE KEYS;
888
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
889
 
show table status like 't1';
890
 
ALTER TABLE t1 ENABLE KEYS;
891
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
892
 
show table status like 't1';
893
 
ALTER TABLE t1 DISABLE KEYS;
894
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
895
 
show table status like 't1';
896
 
ALTER TABLE t1 ENABLE KEYS;
897
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
898
 
show table status like 't1';
 
884
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
885
SHOW TABLE STATUS LIKE 't1';
 
886
ALTER TABLE t1 DISABLE KEYS;
 
887
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
888
SHOW TABLE STATUS LIKE 't1';
 
889
ALTER TABLE t1 ENABLE KEYS;
 
890
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
891
SHOW TABLE STATUS LIKE 't1';
 
892
ALTER TABLE t1 DISABLE KEYS;
 
893
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
894
SHOW TABLE STATUS LIKE 't1';
 
895
ALTER TABLE t1 ENABLE KEYS;
 
896
--replace_column 6 # 7 # 8 # 10 # 11 # 12 # 13 # 14 # 15 # 16 #
 
897
SHOW TABLE STATUS LIKE 't1';
899
898
#--exec ls -log var/master-data/test/t1.MYI
900
899
#--exec myisamchk -dvv var/master-data/test/t1.MYI
901
900
#--exec myisamchk -iev var/master-data/test/t1.MYI
904
903
ALTER TABLE t1 DISABLE KEYS;
905
904
ALTER TABLE t1 ENABLE KEYS;
906
905
SET GLOBAL myisam_repair_threads=1;
907
 
CHECK TABLE t1;
 
906
CHECK TABLE t1 EXTENDED;
908
907
DROP TABLE t1;
909
908
 
910
909
#
1061
1060
) ENGINE=MyISAM;
1062
1061
INSERT INTO t1 VALUES(REPEAT("a",128), 'b');
1063
1062
SELECT COUNT(*) FROM t1;
1064
 
CHECK TABLE t1;
 
1063
CHECK TABLE t1 EXTENDED;
1065
1064
SELECT COUNT(*) FROM t1;
1066
 
CHECK TABLE t1;
 
1065
CHECK TABLE t1 EXTENDED;
1067
1066
DROP TABLE t1;
1068
1067
#
1069
1068
# Test #3 - same as test #1, but using OPTIMIZE TABLE.
1079
1078
INSERT INTO t1 VALUES('c', 'b');
1080
1079
DELETE FROM t1 WHERE c1='b';
1081
1080
SELECT COUNT(*) FROM t1;
1082
 
ALTER TABLE t1 ENGINE=MyISAM;
 
1081
OPTIMIZE TABLE t1;
1083
1082
SELECT COUNT(*) FROM t1;
1084
1083
DROP TABLE t1;
1085
1084
#
1114
1113
# With bug present, this shows that all long rows are gone.
1115
1114
SELECT COUNT(*) FROM t1;
1116
1115
CHECK TABLE t1;
1117
 
CHECK TABLE t1;
 
1116
CHECK TABLE t1 EXTENDED;
1118
1117
DROP TABLE t1;
1119
1118
#
1120
1119
# Test #5 - same as test #1 but UTF-8.
1142
1141
# Using Tamil Letter A, Unicode U+0B85
1143
1142
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1144
1143
SELECT COUNT(*) FROM t1;
1145
 
CHECK TABLE t1;
 
1144
CHECK TABLE t1 EXTENDED;
1146
1145
SELECT COUNT(*) FROM t1;
1147
 
CHECK TABLE t1;
 
1146
CHECK TABLE t1 EXTENDED;
1148
1147
DROP TABLE t1;
1149
1148
#
1150
1149
# Test #7 - same as test #3, but UTF-8.
1161
1160
INSERT INTO t1 VALUES('c', 'b');
1162
1161
DELETE FROM t1 WHERE c1='b';
1163
1162
SELECT COUNT(*) FROM t1;
1164
 
ALTER TABLE t1 ENGINE=MyISAM;
 
1163
OPTIMIZE TABLE t1;
1165
1164
SELECT COUNT(*) FROM t1;
1166
1165
DROP TABLE t1;
1167
1166
#
1197
1196
# With bug present, this shows that all long rows are gone.
1198
1197
SELECT COUNT(*) FROM t1;
1199
1198
CHECK TABLE t1;
1200
 
CHECK TABLE t1;
 
1199
CHECK TABLE t1 EXTENDED;
1201
1200
DROP TABLE t1;
1202
1201
--echo End of 5.1 tests
1203
1202