1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
|
create table t1(f1 int, key f1_idx(f1 desc)) engine=heap;
ERROR 42000: The storage engine for the table doesn't support descending indexes
create table
t1(a int, b int, key a_desc_b_asc (a desc, b), key a_asc_b_desc (a, b desc))
engine= innodb;
flush tables;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int DEFAULT NULL,
`b` int DEFAULT NULL,
KEY `a_desc_b_asc` (`a` DESC,`b`),
KEY `a_asc_b_desc` (`a`,`b` DESC)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
insert into t1 values(1,6),(1,5),(2,5),(2,4),(3,4),(3,3),
(4,3),(4,2),(5,2),(5,1),(6,1),(NULL,NULL);
analyze table t1;
# Should use index
explain select * from t1 order by a desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a` desc
select * from t1 order by a desc;
a b
6 1
5 1
5 2
4 2
4 3
3 3
3 4
2 4
2 5
1 5
1 6
NULL NULL
explain select * from t1 order by a desc, b asc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a` desc,`test`.`t1`.`b`
select * from t1 order by a desc, b asc;
a b
6 1
5 1
5 2
4 2
4 3
3 3
3 4
2 4
2 5
1 5
1 6
NULL NULL
explain select * from t1 order by a asc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_asc_b_desc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a`
select * from t1 order by a asc, b desc;
a b
NULL NULL
1 6
1 5
2 5
2 4
3 4
3 3
4 3
4 2
5 2
5 1
6 1
explain select * from t1 order by a asc, b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_asc_b_desc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a`,`test`.`t1`.`b` desc
select * from t1 order by a asc, b desc;
a b
NULL NULL
1 6
1 5
2 5
2 4
3 4
3 3
4 3
4 2
5 2
5 1
6 1
explain select * from t1 group by a,b order by a, b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_asc_b_desc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a`,`test`.`t1`.`b` desc order by `test`.`t1`.`a`,`test`.`t1`.`b` desc
select * from t1 group by a,b order by a, b desc;
a b
NULL NULL
1 6
1 5
2 5
2 4
3 4
3 3
4 3
4 2
5 2
5 1
6 1
# For GROUP BY optimizer can pick any order for column,
explain select * from t1 group by a, b;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_desc_b_asc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a`,`test`.`t1`.`b`
explain select * from t1 group by a, b order by a;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_asc_b_desc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a`,`test`.`t1`.`b` order by `test`.`t1`.`a`
explain select * from t1 group by a , b order by a desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_desc_b_asc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a` desc,`test`.`t1`.`b` order by `test`.`t1`.`a` desc
explain select * from t1 group by a, b order by a desc, b;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_desc_b_asc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a` desc,`test`.`t1`.`b` order by `test`.`t1`.`a` desc,`test`.`t1`.`b`
explain select * from t1 group by a, b order by a asc, b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc,a_asc_b_desc a_asc_b_desc 10 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a`,`test`.`t1`.`b` desc order by `test`.`t1`.`a`,`test`.`t1`.`b` desc
alter table t1 drop index a_asc_b_desc;
explain select * from t1 group by a, b order by a;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index a_desc_b_asc a_desc_b_asc 10 NULL # # Backward index scan; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` group by `test`.`t1`.`a`,`test`.`t1`.`b` order by `test`.`t1`.`a`
explain select distinct a from t1;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range a_desc_b_asc a_desc_b_asc 5 NULL # # Using index for group-by
Warnings:
Note 1003 /* select#1 */ select distinct `test`.`t1`.`a` AS `a` from `test`.`t1`
select distinct a from t1;
a
1
2
3
4
5
6
NULL
explain select a from t1 group by a;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range a_desc_b_asc a_desc_b_asc 5 NULL # # Using index for group-by
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a` from `test`.`t1` group by `test`.`t1`.`a`
select a from t1 group by a;
a
1
2
3
4
5
6
NULL
# Should use index backward
explain select * from t1 order by a asc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Backward index scan; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a`
select * from t1 order by a asc, b desc;
a b
NULL NULL
1 6
1 5
2 5
2 4
3 4
3 3
4 3
4 2
5 2
5 1
6 1
explain select * from t1 order by a asc, b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Backward index scan; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a`,`test`.`t1`.`b` desc
select * from t1 order by a asc, b desc;
a b
NULL NULL
1 6
1 5
2 5
2 4
3 4
3 3
4 3
4 2
5 2
5 1
6 1
# Should use filesort
explain select * from t1 order by a desc, b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Using index; Using filesort
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a` desc,`test`.`t1`.`b` desc
select * from t1 order by a desc, b desc;
a b
6 1
5 2
5 1
4 3
4 2
3 4
3 3
2 5
2 4
1 6
1 5
NULL NULL
explain select * from t1 order by a asc, b asc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL a_desc_b_asc 10 NULL # # Using index; Using filesort
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` order by `test`.`t1`.`a`,`test`.`t1`.`b`
select * from t1 order by a asc, b asc;
a b
NULL NULL
1 5
1 6
2 4
2 5
3 3
3 4
4 2
4 3
5 1
5 2
6 1
create index i1 on t1 (a desc, a asc);
ERROR 42S21: Duplicate column name 'a'
create index i1 on t1 (a desc, b desc);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int DEFAULT NULL,
`b` int DEFAULT NULL,
KEY `a_desc_b_asc` (`a` DESC,`b`),
KEY `i1` (`a` DESC,`b` DESC)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
create table t2 (a int auto_increment, primary key (a desc)) engine= innodb;
show create table t2;
Table Create Table
t2 CREATE TABLE `t2` (
`a` int NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`a` DESC)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
insert ignore into t2 select a from t1;
Warnings:
Warning 1062 Duplicate entry '1' for key 't2.PRIMARY'
Warning 1062 Duplicate entry '2' for key 't2.PRIMARY'
Warning 1062 Duplicate entry '3' for key 't2.PRIMARY'
Warning 1062 Duplicate entry '4' for key 't2.PRIMARY'
Warning 1062 Duplicate entry '5' for key 't2.PRIMARY'
select * from t2;
a
7
6
5
4
3
2
1
create table t3 (a varchar(10), key i1(a(5) desc)) engine= innodb;
flush tables;
show create table t3;
Table Create Table
t3 CREATE TABLE `t3` (
`a` varchar(10) DEFAULT NULL,
KEY `i1` (`a`(5) DESC)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
create index i2 on t3(a(6));
flush tables;
show create table t3;
Table Create Table
t3 CREATE TABLE `t3` (
`a` varchar(10) DEFAULT NULL,
KEY `i1` (`a`(5) DESC),
KEY `i2` (`a`(6))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
alter table t3 add fulltext index fts_idx(a desc);
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
alter table t3 add fulltext index fts_idx(a asc);
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
alter table t3 add column b point not null, add spatial index gis_idx(b desc);
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
alter table t3 add column b point not null, add spatial index gis_idx(b asc);
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t4 (a text, fulltext key fts(a desc));
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t4 (a point not null, spatial key gis(a desc));
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t4 (a text, fulltext key fts(a asc));
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t4 (a point not null, spatial key gis(a asc));
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t5 (f1 int, key h(f1 asc) using hash) engine= heap;
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t5 (f1 int, key h(f1 desc) using hash) engine= heap;
ERROR HY000: Incorrect usage of spatial/fulltext/hash index and explicit index order
create table t5 (f1 int, key h(f1) using hash) engine= heap;
drop table t1,t2,t3,t5;
CREATE TABLE t0 (i INTEGER);
INSERT INTO t0 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
CREATE TABLE t1 (i1 INTEGER NOT NULL, i2 INTEGER NOT NULL,
i3 INTEGER NOT NULL, KEY k1 (i1 desc, i2)
) ENGINE= innodb;
INSERT INTO t1
SELECT a.i*10 + b.i + 1, a.i*100 + b.i*10 + c.i, a.i
FROM t0 AS a, t0 AS b, t0 AS c;
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 4 NULL 30 100.00 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` between 50 and 52) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
i1 i2 i3
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
51 501 5
51 503 5
51 505 5
51 507 5
51 509 5
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
EXPLAIN SELECT * FROM t1
WHERE (i1 BETWEEN 50 AND 52 OR i1 BETWEEN 70 AND 72) AND MOD(i2,2)=1
ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 4 NULL 60 100.00 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where (((`test`.`t1`.`i1` between 50 and 52) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1
WHERE (i1 BETWEEN 50 AND 52 OR i1 BETWEEN 70 AND 72) AND MOD(i2,2)=1
ORDER BY i1 DESC;
i1 i2 i3
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
51 501 5
51 503 5
51 505 5
51 507 5
51 509 5
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
70 691 6
70 693 6
70 695 6
70 697 6
70 699 6
71 701 7
71 703 7
71 705 7
71 707 7
71 709 7
72 711 7
72 713 7
72 715 7
72 717 7
72 719 7
EXPLAIN SELECT * FROM t1
WHERE ( (i1=50 AND i2=495) OR i1 BETWEEN 70 AND 72) AND MOD(i2,2)=1
ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 8 NULL 31 100.00 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((((`test`.`t1`.`i2` = 495) and (`test`.`t1`.`i1` = 50)) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1
WHERE ( (i1=50 AND i2=495) OR i1 BETWEEN 70 AND 72) AND MOD(i2,2)=1
ORDER BY i1 DESC;
i1 i2 i3
50 495 4
70 691 6
70 693 6
70 695 6
70 697 6
70 699 6
71 701 7
71 703 7
71 705 7
71 707 7
71 709 7
72 711 7
72 713 7
72 715 7
72 717 7
72 719 7
EXPLAIN SELECT * FROM t1 WHERE i1 >= 50 AND i1 < 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 4 NULL 20 100.00 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` >= 50) and (`test`.`t1`.`i1` < 52) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1 WHERE i1 >= 50 AND i1 < 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
i1 i2 i3
51 501 5
51 503 5
51 505 5
51 507 5
51 509 5
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
EXPLAIN SELECT * FROM t1 WHERE i1 > 50 AND i1 <= 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 4 NULL 20 100.00 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` > 50) and (`test`.`t1`.`i1` <= 52) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1 WHERE i1 > 50 AND i1 <= 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
i1 i2 i3
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
51 501 5
51 503 5
51 505 5
51 507 5
51 509 5
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1, i2);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 4 NULL 30 100.00 Using index condition; Backward index scan
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` between 50 and 52) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND MOD(i2,2)=1 ORDER BY i1 DESC;
i1 i2 i3
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
51 501 5
51 503 5
51 505 5
51 507 5
51 509 5
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1, i2 DESC);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND i2 BETWEEN 495 AND 515 ORDER BY i1, i2 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 8 NULL 30 11.11 Using index condition
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` between 50 and 52) and (`test`.`t1`.`i2` between 495 and 515)) order by `test`.`t1`.`i1`,`test`.`t1`.`i2` desc
SELECT * FROM t1
WHERE i1 BETWEEN 50 AND 52 AND i2 BETWEEN 495 AND 515 ORDER BY i1, i2 DESC;
i1 i2 i3
50 499 4
50 498 4
50 497 4
50 496 4
50 495 4
51 509 5
51 508 5
51 507 5
51 506 5
51 505 5
51 504 5
51 503 5
51 502 5
51 501 5
51 500 5
52 515 5
52 514 5
52 513 5
52 512 5
52 511 5
52 510 5
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1, i2 DESC, i3);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1, i2 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 12 NULL 150 1.23 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` between 48 and 62) and (`test`.`t1`.`i2` between 395 and 615) and (`test`.`t1`.`i3` between 4 and 5) and ((`test`.`t1`.`i1` % 2) = 0) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1`,`test`.`t1`.`i2` desc
SELECT * FROM t1
WHERE i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1, i2 DESC;
i1 i2 i3
48 479 4
48 477 4
48 475 4
48 473 4
48 471 4
50 499 4
50 497 4
50 495 4
50 493 4
50 491 4
52 519 5
52 517 5
52 515 5
52 513 5
52 511 5
54 539 5
54 537 5
54 535 5
54 533 5
54 531 5
56 559 5
56 557 5
56 555 5
56 553 5
56 551 5
58 579 5
58 577 5
58 575 5
58 573 5
58 571 5
60 599 5
60 597 5
60 595 5
60 593 5
60 591 5
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1, i2 DESC, i3 DESC);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1, i2 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 12 NULL 150 1.23 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((`test`.`t1`.`i1` between 48 and 62) and (`test`.`t1`.`i2` between 395 and 615) and (`test`.`t1`.`i3` between 4 and 5) and ((`test`.`t1`.`i1` % 2) = 0) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1`,`test`.`t1`.`i2` desc
SELECT * FROM t1
WHERE i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1, i2 DESC;
i1 i2 i3
48 479 4
48 477 4
48 475 4
48 473 4
48 471 4
50 499 4
50 497 4
50 495 4
50 493 4
50 491 4
52 519 5
52 517 5
52 515 5
52 513 5
52 511 5
54 539 5
54 537 5
54 535 5
54 533 5
54 531 5
56 559 5
56 557 5
56 555 5
56 553 5
56 551 5
58 579 5
58 577 5
58 575 5
58 573 5
58 571 5
60 599 5
60 597 5
60 595 5
60 593 5
60 591 5
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1, i2 DESC, i3);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5) or i1 between 70 and 72) AND
MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 12 NULL 180 100.00 Using where; Using index; Using filesort
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((((`test`.`t1`.`i1` between 48 and 62) and (`test`.`t1`.`i2` between 395 and 615) and (`test`.`t1`.`i3` between 4 and 5)) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i1` % 2) = 0) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc,`test`.`t1`.`i2`
SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5) or i1 between 70 and 72) AND
MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
i1 i2 i3
72 711 7
72 713 7
72 715 7
72 717 7
72 719 7
70 691 6
70 693 6
70 695 6
70 697 6
70 699 6
60 591 5
60 593 5
60 595 5
60 597 5
60 599 5
58 571 5
58 573 5
58 575 5
58 577 5
58 579 5
56 551 5
56 553 5
56 555 5
56 557 5
56 559 5
54 531 5
54 533 5
54 535 5
54 537 5
54 539 5
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
48 471 4
48 473 4
48 475 4
48 477 4
48 479 4
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1 DESC, i2, i3);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5) or i1 between 70 and 72) AND
MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 12 NULL 180 100.00 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((((`test`.`t1`.`i1` between 48 and 62) and (`test`.`t1`.`i2` between 395 and 615) and (`test`.`t1`.`i3` between 4 and 5)) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i1` % 2) = 0) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc,`test`.`t1`.`i2`
SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5) or i1 between 70 and 72) AND
MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
i1 i2 i3
72 711 7
72 713 7
72 715 7
72 717 7
72 719 7
70 691 6
70 693 6
70 695 6
70 697 6
70 699 6
60 591 5
60 593 5
60 595 5
60 597 5
60 599 5
58 571 5
58 573 5
58 575 5
58 577 5
58 579 5
56 551 5
56 553 5
56 555 5
56 557 5
56 559 5
54 531 5
54 533 5
54 535 5
54 537 5
54 539 5
52 511 5
52 513 5
52 515 5
52 517 5
52 519 5
50 491 4
50 493 4
50 495 4
50 497 4
50 499 4
48 471 4
48 473 4
48 475 4
48 477 4
48 479 4
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1 DESC, i2, i3);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1
WHERE ( (i1=50 AND i2=495 and i3=4) OR i1 BETWEEN 70 AND 72) AND
MOD(i2,2)=1
ORDER BY i1 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 12 NULL 31 100.00 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3` from `test`.`t1` where ((((`test`.`t1`.`i3` = 4) and (`test`.`t1`.`i2` = 495) and (`test`.`t1`.`i1` = 50)) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc
SELECT * FROM t1
WHERE ( (i1=50 AND i2=495 and i3=4) OR i1 BETWEEN 70 AND 72) AND
MOD(i2,2)=1
ORDER BY i1 DESC;
i1 i2 i3
72 711 7
72 713 7
72 715 7
72 717 7
72 719 7
71 701 7
71 703 7
71 705 7
71 707 7
71 709 7
70 691 6
70 693 6
70 695 6
70 697 6
70 699 6
50 495 4
ALTER TABLE t1 ADD COLUMN (i4 INTEGER NOT NULL);
UPDATE t1 SET i4=i3;
ALTER TABLE t1 DROP INDEX k1, ADD INDEX k1(i1 DESC, i2, i3 DESC, i4);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND i4 BETWEEN 5 AND 6) OR
i1 between 70 and 72) AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range k1 k1 16 NULL 180 100.00 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i1` AS `i1`,`test`.`t1`.`i2` AS `i2`,`test`.`t1`.`i3` AS `i3`,`test`.`t1`.`i4` AS `i4` from `test`.`t1` where ((((`test`.`t1`.`i1` between 48 and 62) and (`test`.`t1`.`i2` between 395 and 615) and (`test`.`t1`.`i3` between 4 and 5) and (`test`.`t1`.`i4` between 5 and 6)) or (`test`.`t1`.`i1` between 70 and 72)) and ((`test`.`t1`.`i1` % 2) = 0) and ((`test`.`t1`.`i2` % 2) = 1)) order by `test`.`t1`.`i1` desc,`test`.`t1`.`i2`
SELECT * FROM t1 WHERE
((i1 BETWEEN 48 AND 62 AND i2 BETWEEN 395 AND 615 AND
i3 BETWEEN 4 AND 5 AND i4 BETWEEN 5 AND 6) OR
i1 between 70 and 72) AND MOD(i1,2)=0 AND MOD(i2,2)=1
ORDER BY i1 desc, i2 ;
i1 i2 i3 i4
72 711 7 7
72 713 7 7
72 715 7 7
72 717 7 7
72 719 7 7
70 691 6 6
70 693 6 6
70 695 6 6
70 697 6 6
70 699 6 6
60 591 5 5
60 593 5 5
60 595 5 5
60 597 5 5
60 599 5 5
58 571 5 5
58 573 5 5
58 575 5 5
58 577 5 5
58 579 5 5
56 551 5 5
56 553 5 5
56 555 5 5
56 557 5 5
56 559 5 5
54 531 5 5
54 533 5 5
54 535 5 5
54 537 5 5
54 539 5 5
52 511 5 5
52 513 5 5
52 515 5 5
52 517 5 5
52 519 5 5
DROP TABLE t0, t1;
CREATE TABLE t1 (a INT, b INT, KEY i1 (a DESC, b DESC));
INSERT INTO t1 (a, b) VALUES (1,1), (1,2), (1,3);
INSERT INTO t1 SELECT a + 1, b FROM t1;
INSERT INTO t1 SELECT a + 2, b FROM t1;
INSERT INTO t1 SELECT a + 4, b FROM t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN
SELECT a, MIN(b), MAX(b) FROM t1 GROUP BY a ORDER BY a DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range i1 i1 10 NULL 9 100.00 Using index for group-by
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,min(`test`.`t1`.`b`) AS `MIN(b)`,max(`test`.`t1`.`b`) AS `MAX(b)` from `test`.`t1` group by `test`.`t1`.`a` desc order by `test`.`t1`.`a` desc
SELECT a, MIN(b), MAX(b) FROM t1 GROUP BY a ORDER BY a DESC;
a MIN(b) MAX(b)
8 1 3
7 1 3
6 1 3
5 1 3
4 1 3
3 1 3
2 1 3
1 1 3
DROP TABLE t1;
create table t1 (a int not null, b int, c varchar(10),
key (a desc, b desc, c desc));
insert into t1 values (1, NULL, NULL), (1, NULL, 'b'), (1, 1, NULL), (1, 1, 'b'), (1, 1, 'b'), (2, 1, 'a'), (2, 1, 'b'), (2, 2, 'a'), (2, 2, 'b'), (2, 3, 'c'),(1,3,'b');
insert into t1 values (0, NULL, NULL), (0, NULL, 'b'), (0, 0, NULL), (0, 0, 'b'), (0, 0, 'b'), (0, 0, 'a'), (0, 0, 'b'), (0, 0, 'a'), (0, 0, 'b'), (0, 0, 'c'),(0,0,'b');
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
explain select * from t1 where a >= 1 and a < 3 and b >0 order by a desc,b desc;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range a a 9 NULL 9 33.33 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c` from `test`.`t1` where ((`test`.`t1`.`a` >= 1) and (`test`.`t1`.`a` < 3) and (`test`.`t1`.`b` > 0)) order by `test`.`t1`.`a` desc,`test`.`t1`.`b` desc
flush status;
select * from t1 where a >= 1 and a < 3 and b >0 order by a desc,b desc;
a b c
2 1 a
2 1 b
2 2 a
2 2 b
2 3 c
1 1 NULL
1 1 b
1 1 b
1 3 b
show status like 'handler_read%';
Variable_name Value
Handler_read_first 0
Handler_read_key 1
Handler_read_last 0
Handler_read_next 9
Handler_read_prev 0
Handler_read_rnd 0
Handler_read_rnd_next 0
drop table t1;
create table t1 (a1 int, a2 char(3), key k1(a1 desc));
insert into t1 values(10,'aaa'), (10,null), (10,'bbb'), (20,'zzz');
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
# Shouldn't optimize tables away on DESC index
explain select min(a1) from t1;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index NULL k1 5 NULL # # Using index
Warnings:
Note 1003 /* select#1 */ select min(`test`.`t1`.`a1`) AS `min(a1)` from `test`.`t1`
select min(a1) from t1;
min(a1)
10
drop table t1;
CREATE TABLE t1
(a VARCHAR(10),
b VARCHAR(10),
KEY ab_asc (a ASC, b ASC),
KEY a_asc_b_desc (a ASC, b DESC),
key a_desc_b_asc (a DESC, b ASC))
ENGINE = InnoDB
PARTITION BY KEY (a, b) PARTITIONS 3;
INSERT INTO t1 VALUES ("0", "0"), ("1", "1"), ("2", "2"), ("3", "3"),
("4", "4"), ("55", "55"), ("54", "54"), ("1", "2"), ("1", "4"), ("1", "3"),
("55", "54"), ("0", "1"), (NULL,NULL),(0, NULL), (1,NULL);
SELECT * FROM t1 ORDER BY a, b DESC;
a b
NULL NULL
0 1
0 0
0 NULL
1 4
1 3
1 2
1 1
1 NULL
2 2
3 3
4 4
54 54
55 55
55 54
DROP TABLE t1;
#
# Bug#23036049: WL1074:ASSERTION `CTX->CUR <= CTX->LAST' FAILED.
#
CREATE TABLE c (
pk INTEGER AUTO_INCREMENT,
col_int INTEGER NOT NULL,
col_varchar VARCHAR(5) NOT NULL,
unique KEY (pk,col_int DESC)
) ENGINE= innodb;
INSERT IGNORE INTO c (col_int,col_varchar) VALUES
(7, 'm'),(0, 'alukq'),(8, 'lu'),(6, 'uk'), (5, 'kquk'),(9, 'qukko'),(0, 'u'),
(181, 'kkoei'),(3, 'ko'),(86, 'oei');
CREATE TABLE cc (
pk INTEGER AUTO_INCREMENT,
col_int INTEGER NOT NULL,
col_varchar VARCHAR(5) NOT NULL,
unique KEY (pk,col_int DESC)
) ENGINE= innodb;
INSERT IGNORE INTO cc (col_int,col_varchar) VALUES
(9, 'gktbk'),(0, 'k'),(4, 'tbkj'),(8, 'bk'),(9, 'kjrk'),(2,'j'),(7, 'r'),
(4, 'kmqmk'),(0, 'm'),(4, 'qmkn');
SELECT DISTINCT t2.col_int
FROM ( c AS t1 INNER JOIN cc AS t2 ON (t2.col_varchar = t1.col_varchar))
WHERE ( t1.col_int IN ( 167, 9))
AND t1.pk = 122;
col_int
DROP TABLE c,cc;
#
CREATE TABLE b (
pk INTEGER AUTO_INCREMENT,
col_int_key INTEGER /*! NULL */,
col_varchar_key VARCHAR(10) /*! NULL */,
PRIMARY KEY (pk DESC),
KEY (col_varchar_key DESC, col_int_key DESC)
) ENGINE= innodb;
INSERT /*! IGNORE */ INTO b (col_int_key,col_varchar_key) VALUES
(3, 'ceksatef'),(3, 'eks'),(3, 'ksatefqs'),(6, 'sate'),(3, 'a');
CREATE TABLE cc (
pk INTEGER ,
col_int_key INTEGER /*! NULL */,
col_varchar_key VARCHAR(10) /*! NULL */
) ENGINE= innodb;
INSERT /*! IGNORE */ INTO cc (col_int_key, col_varchar_key) VALUES
(NULL, 'koeiwsgpmf'),(8, 'oeiwsgpm'),(8, 'eiwsg'),(0,'iwsg'),(5, 'wsgpmfy'),
(1, 'sgpmfyvvu'),(7, 'gpmfyvvu'),(7, 'pmfyvvu'),(147, 'mfyv'),(2, NULL);
# Shouldn't crash
SELECT
DISTINCT OUTR . col_varchar_key
FROM b AS OUTR WHERE ( OUTR . col_int_key , OUTR . pk ) IN
(
SELECT DISTINCT
INNR . pk AS x ,
INNR . pk AS y
FROM cc AS INNR WHERE OUTR . col_varchar_key = 'v'
)
AND OUTR . pk >= 3 ;
col_varchar_key
DROP TABLE b;
CREATE TABLE b (
pk INTEGER AUTO_INCREMENT,
col_int_key INTEGER /*! NULL */,
col_varchar_key VARCHAR(10) /*! NULL */,
PRIMARY KEY (pk DESC),
KEY (col_varchar_key, col_int_key)
) ENGINE= innodb;
INSERT /*! IGNORE */ INTO b (col_int_key,col_varchar_key)
VALUES (3, 'ceksatef'),(3, 'eks'),(3, 'ksatefqs'),(6, 'sate'),(3, 'a');
# Shouldn't crash
SELECT
DISTINCT OUTR . col_varchar_key
FROM b AS OUTR WHERE ( OUTR . col_int_key , OUTR . pk ) IN
(
SELECT DISTINCT
INNR . pk AS x ,
INNR . pk AS y
FROM cc AS INNR WHERE OUTR . col_varchar_key = 'v'
)
AND OUTR . pk >= 3 ;
col_varchar_key
DROP TABLE b,cc;
#
#
# Bug#23212656:JOIN QUERY WITH RANGE PREDICATES GIVES INCORRECT RESULTS
#
CREATE TABLE ee (
col_int int(11) DEFAULT NULL,
col_int_key int(11) DEFAULT NULL,
pk int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (pk DESC),
KEY 1col_int_key (col_int_key DESC)
) ENGINE=innodb;
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO ee VALUES
(NULL,NULL,1), (NULL,NULL,2), (NULL,286720000,3), (NULL,1,4),
(2084831232,8,5), (NULL,0,6), (4,763953152,7), (5,NULL,8), (7,9,9);
SELECT DISTINCT alias1 . col_int_key AS field1 , alias1 . col_int AS field2
FROM ee AS alias1 JOIN ee AS alias2 ON alias1 . pk = alias2 . col_int_key
WHERE ( alias1 . pk BETWEEN 8 AND ( 8 + 4 ) AND alias2 . pk <> 2 );
field1 field2
9 7
NULL 5
DROP TABLE ee;
#
#
# Bug#23217803:QUERY USING INDEX_MERGE_SORT_UNION GIVES INCORRECT
# RESULTS WITH DESC KEY
#
CREATE TABLE t (
pk INTEGER AUTO_INCREMENT,
col_int INTEGER ,
col_int_key INTEGER ,
col_varchar_key VARCHAR(10) ,
col_varchar VARCHAR(10) ,
PRIMARY KEY (pk DESC),
KEY (col_varchar_key DESC),
UNIQUE KEY (col_int_key DESC, pk)
) ENGINE=innodb;
INSERT INTO t (col_int_key, col_int, col_varchar_key)
VALUES (1, 2, NULL),(NULL, 3, 'dks'), (7, 0, 'ksjijcsz'),(172, 84, 'sj');
SELECT col_int FROM t AS table1 WHERE table1 .pk > 166 OR table1
.col_varchar_key = 'c' OR table1 .col_int_key > 166 LIMIT 1;
col_int
84
DROP TABLE t;
#
#
# BUG#22973383:INNODB ASSERTION IN ROW_SEL_CONVERT_MYSQL_KEY_TO_INNOBASE
#
CREATE TABLE c (
col_varchar_10_utf8_key varchar(10) CHARACTER SET utf8 DEFAULT NULL,
unique key k5 (col_varchar_10_utf8_key(7) DESC)
) ENGINE=innodb;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE e (
col_varchar_10_utf8_key varchar(10) CHARACTER SET utf8 DEFAULT NULL,
col_varchar_255_utf8_key varchar(255) CHARACTER SET utf8 DEFAULT NULL,
col_varchar_10_latin1_key varchar(10) DEFAULT NULL,
unique key k5 (col_varchar_10_utf8_key(7) DESC,
col_varchar_10_latin1_key(5) DESC, col_varchar_255_utf8_key(50) DESC)
) ENGINE=innodb;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
EXPLAIN SELECT table2 . col_varchar_10_utf8_key AS field1
FROM e AS table1 LEFT JOIN c AS table2
ON table1 . col_varchar_10_utf8_key = table2 . col_varchar_10_utf8_key
WHERE table1 . col_varchar_255_utf8_key != 'LPGIV'
AND table1 . col_varchar_10_latin1_key >= 'w'
AND table1 . col_varchar_10_utf8_key < 'zzzz';
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE table1 NULL range k5 k5 24 NULL 1 100.00 Using where
1 SIMPLE table2 NULL eq_ref k5 k5 24 test.table1.col_varchar_10_utf8_key 1 100.00 Using where
Warnings:
Note 1003 /* select#1 */ select `test`.`table2`.`col_varchar_10_utf8_key` AS `field1` from `test`.`e` `table1` left join `test`.`c` `table2` on((`test`.`table2`.`col_varchar_10_utf8_key` = `test`.`table1`.`col_varchar_10_utf8_key`)) where ((`test`.`table1`.`col_varchar_255_utf8_key` <> 'LPGIV') and (`test`.`table1`.`col_varchar_10_latin1_key` >= 'w') and (`test`.`table1`.`col_varchar_10_utf8_key` < 'zzzz'))
SELECT table2 . col_varchar_10_utf8_key AS field1
FROM e AS table1 LEFT JOIN c AS table2
ON table1 . col_varchar_10_utf8_key = table2 . col_varchar_10_utf8_key
WHERE table1 . col_varchar_255_utf8_key != 'LPGIV'
AND table1 . col_varchar_10_latin1_key >= 'w'
AND table1 . col_varchar_10_utf8_key < 'zzzz';
field1
DROP TABLE c,e;
CREATE TABLE t1 (
i int(11) NOT NULL,
j int(11) DEFAULT NULL,
k int(11) DEFAULT NULL,
l int(11) DEFAULT NULL,
PRIMARY KEY (i),
KEY j (j,k DESC,l),
KEY i (i,j,k,l)
)ENGINE=InnoDB;
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO t1 VALUES
(11,1,6,3),(4,1,2,3),(8,1,2,3),(10,1,2,3),(1,1,1,1),(2,1,1,1),(3,1,1,1),
(5,3,2,3),(6,4,2,3),(7,6,2,3),(12,7,6,3),(13,7,6,8),(14,7,6,9),(16,8,7,9),
(15,8,6,9);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 WHERE i < 10 AND j >=1 AND k >=2 AND l <=5;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range PRIMARY,j,i PRIMARY 4 NULL 8 11.11 Using where
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`j` AS `j`,`test`.`t1`.`k` AS `k`,`test`.`t1`.`l` AS `l` from `test`.`t1` where ((`test`.`t1`.`i` < 10) and (`test`.`t1`.`j` >= 1) and (`test`.`t1`.`k` >= 2) and (`test`.`t1`.`l` <= 5))
SELECT * FROM t1 WHERE i < 10 AND j >=1 AND k >=2 AND l <=5;
i j k l
4 1 2 3
5 3 2 3
6 4 2 3
7 6 2 3
8 1 2 3
DROP TABLE t1;
CREATE TABLE t1 (
pk INTEGER NOT NULL,
col_int_key INTEGER ,
col_varchar_key BLOB NOT NULL,
PRIMARY KEY (pk),
KEY (col_int_key, col_varchar_key(25) DESC)
);
CREATE TABLE t2 (
pk INTEGER NOT NULL,
col_int INTEGER ,
col_int_key INTEGER ,
col_varchar_key BLOB ,
PRIMARY KEY (pk),
KEY (col_int_key, col_varchar_key(25) DESC)
);
EXPLAIN SELECT t1.col_varchar_key
FROM ( t2 INNER JOIN t1
ON (t1.col_int_key = t2.col_int AND (1,5) IN
( SELECT alias1.col_int_key, alias1. pk
FROM ( t2 AS alias2 RIGHT JOIN t1 AS alias1
ON (alias1.pk = alias2.col_int_key )
) WHERE alias1.col_varchar_key >= 'y') ) );
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t2 NULL ALL NULL NULL NULL NULL 1 100.00 Using where
1 SIMPLE t1 NULL ref col_int_key col_int_key 5 test.t2.col_int 1 100.00 NULL
1 SIMPLE alias1 NULL const PRIMARY,col_int_key PRIMARY 4 const 1 100.00 Using where
1 SIMPLE alias2 NULL ref col_int_key col_int_key 5 test.alias1.pk 1 100.00 Using index; FirstMatch(t1)
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`col_varchar_key` AS `col_varchar_key` from `test`.`t2` join `test`.`t1` semi join (`test`.`t1` `alias1` left join `test`.`t2` `alias2` on((`test`.`alias1`.`pk` = `test`.`alias2`.`col_int_key`))) where ((`test`.`t1`.`col_int_key` = `test`.`t2`.`col_int`) and (`test`.`alias1`.`pk` = 5) and (`test`.`alias1`.`col_int_key` = 1) and (`test`.`alias1`.`col_varchar_key` >= 'y'))
SELECT t1.col_varchar_key
FROM ( t2 INNER JOIN t1
ON (t1.col_int_key = t2.col_int AND (1,5) IN
( SELECT alias1.col_int_key, alias1. pk
FROM ( t2 AS alias2 RIGHT JOIN t1 AS alias1
ON (alias1.pk = alias2.col_int_key )
) WHERE alias1.col_varchar_key >= 'y') ) );
col_varchar_key
EXPLAIN SELECT t1.col_varchar_key
FROM ( t2 INNER JOIN t1
ON (t1.col_int_key = t2.col_int AND (1,5) IN
( SELECT alias1.col_int_key, alias1. pk
FROM ( t2 AS alias2 RIGHT JOIN t1 AS alias1
ON (alias1.pk = alias2.col_int_key )
) WHERE alias1.col_varchar_key <= 'y') ) );
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t2 NULL ALL NULL NULL NULL NULL 1 100.00 Using where
1 SIMPLE t1 NULL ref col_int_key col_int_key 5 test.t2.col_int 1 100.00 NULL
1 SIMPLE alias1 NULL const PRIMARY,col_int_key PRIMARY 4 const 1 100.00 Using where
1 SIMPLE alias2 NULL ref col_int_key col_int_key 5 test.alias1.pk 1 100.00 Using index; FirstMatch(t1)
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`col_varchar_key` AS `col_varchar_key` from `test`.`t2` join `test`.`t1` semi join (`test`.`t1` `alias1` left join `test`.`t2` `alias2` on((`test`.`alias1`.`pk` = `test`.`alias2`.`col_int_key`))) where ((`test`.`t1`.`col_int_key` = `test`.`t2`.`col_int`) and (`test`.`alias1`.`pk` = 5) and (`test`.`alias1`.`col_int_key` = 1) and (`test`.`alias1`.`col_varchar_key` <= 'y'))
SELECT t1.col_varchar_key
FROM ( t2 INNER JOIN t1
ON (t1.col_int_key = t2.col_int AND (1,5) IN
( SELECT alias1.col_int_key, alias1. pk
FROM ( t2 AS alias2 RIGHT JOIN t1 AS alias1
ON (alias1.pk = alias2.col_int_key )
) WHERE alias1.col_varchar_key <= 'y') ) );
col_varchar_key
DROP TABLE t1,t2;
#End of test case for Bug#22973383
#
# Bug #23576305:WL1074:STRAIGHT_JOIN QUERY WITH RANGE
# CHECKED (MYISAM) GIVES WRONG RESULTS
#
CREATE TABLE t1 (
pk INTEGER NOT NULL ,
col_varchar_key varchar(10) DEFAULT NULL,
UNIQUE KEY pk_2 (pk,col_varchar_key DESC)
);
INSERT INTO t1 VALUES (3,'ksatefqs'),
(4,'sate'),(5,'a');
CREATE TABLE t2 (
pk INTEGER NOT NULL,
col_int_key INTEGER DEFAULT NULL,
col_varchar_key varchar(10) DEFAULT NULL
);
INSERT INTO t2 VALUES
(10,80,'ukqukkoe'),
(11,2,'kqukkoe'),
(12,5,'qukkoeiws'),
(13,9,'ukko'),
(14,3,'kkoeiwsgp');
ANALYZE TABLE t1, t2;
Table Op Msg_type Msg_text
test.t1 analyze status OK
test.t2 analyze status OK
EXPLAIN SELECT t1.pk, t2.col_int_key,
t1.col_varchar_key, t2.col_varchar_key
FROM t2 JOIN t1 ON ( t1.pk >= t2.col_int_key
AND t1.col_varchar_key != t2.col_varchar_key );
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index pk_2 pk_2 47 NULL # # Using index
1 SIMPLE t2 NULL ALL NULL NULL NULL NULL # # Using where; Using join buffer (hash join)
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`pk` AS `pk`,`test`.`t2`.`col_int_key` AS `col_int_key`,`test`.`t1`.`col_varchar_key` AS `col_varchar_key`,`test`.`t2`.`col_varchar_key` AS `col_varchar_key` from `test`.`t2` join `test`.`t1` where ((`test`.`t1`.`pk` >= `test`.`t2`.`col_int_key`) and (`test`.`t1`.`col_varchar_key` <> `test`.`t2`.`col_varchar_key`))
SELECT t1.pk, t2.col_int_key,
t1.col_varchar_key, t2.col_varchar_key
FROM t2 JOIN t1 ON ( t1.pk >= t2.col_int_key
AND t1.col_varchar_key != t2.col_varchar_key );
pk col_int_key col_varchar_key col_varchar_key
3 2 ksatefqs kqukkoe
3 3 ksatefqs kkoeiwsgp
4 2 sate kqukkoe
4 3 sate kkoeiwsgp
5 2 a kqukkoe
5 3 a kkoeiwsgp
5 5 a qukkoeiws
EXPLAIN SELECT STRAIGHT_JOIN t1.pk, t2.col_int_key,
t1.col_varchar_key, t2.col_varchar_key FROM
t2 JOIN t1 ON ( t1.pk >= t2.col_int_key AND
t1.col_varchar_key != t2.col_varchar_key );
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t2 NULL ALL NULL NULL NULL NULL # # NULL
1 SIMPLE t1 NULL ALL pk_2 NULL NULL NULL # # Range checked for each record (index map: 0x1)
Warnings:
Note 1003 /* select#1 */ select straight_join `test`.`t1`.`pk` AS `pk`,`test`.`t2`.`col_int_key` AS `col_int_key`,`test`.`t1`.`col_varchar_key` AS `col_varchar_key`,`test`.`t2`.`col_varchar_key` AS `col_varchar_key` from `test`.`t2` join `test`.`t1` where ((`test`.`t1`.`pk` >= `test`.`t2`.`col_int_key`) and (`test`.`t1`.`col_varchar_key` <> `test`.`t2`.`col_varchar_key`))
SELECT STRAIGHT_JOIN t1.pk, t2.col_int_key,
t1.col_varchar_key, t2.col_varchar_key FROM
t2 JOIN t1 ON ( t1.pk >= t2.col_int_key AND
t1.col_varchar_key != t2.col_varchar_key );
pk col_int_key col_varchar_key col_varchar_key
3 2 ksatefqs kqukkoe
3 3 ksatefqs kkoeiwsgp
4 2 sate kqukkoe
4 3 sate kkoeiwsgp
5 2 a kqukkoe
5 3 a kkoeiwsgp
5 5 a qukkoeiws
DROP TABLE t1,t2;
#End of test for Bug#23576305
#
# Bug#23730559: ASSERTION `TAB->QUICK() == SAVE_QUICK ||
# TAB->QUICK() == __NULL' FAILED.
#
#
CREATE TABLE b (
col_int INTEGER NOT NULL,
col_int_key INTEGER NOT NULL,
col_varchar_key VARCHAR(20) NOT NULL,
col_varchar VARCHAR(20) NOT NULL,
KEY (col_varchar_key DESC),
KEY (col_varchar_key(5) DESC),
KEY (col_varchar_key, col_int_key)
) ENGINE=InnoDB;
INSERT INTO b ( col_int_key, col_int, col_varchar_key, col_varchar) VALUES
(1, 3, 'xceksatefqsdksjijc', 'xceksatefqsdksjijc'),
(7, 6, 'ce', 'ce'),
(2, 3, 'eksatefqsdksjij', 'eksatefqsdksjij'),
(5, 7, 'satefqsd', 'satefqsd');
CREATE TABLE bb (
col_int INTEGER NOT NULL,
col_int_key INTEGER NOT NULL,
col_varchar_key VARCHAR(20) NOT NULL,
col_varchar VARCHAR(20) NOT NULL,
KEY (col_varchar_key(10) DESC, col_int_key DESC)
) ENGINE=InnoDB;
INSERT INTO bb ( col_int_key, col_int, col_varchar_key, col_varchar) VALUES
(181, 88, 'kkoeiwsgpmfyvvuqvtjn', 'kkoeiwsgpmfyvvuqvtjn'),
(3, 4, 'koeiwsgpmfyv', 'koeiwsgpmfyv'),
(86, 113, 'oeiwsgpm', 'oeiwsgpm'),
(6, 1, 'eiwsgpmfyvvuqvtjncds', 'eiwsgpmfyvvuqvtjncds'),
(8, 5, 'iwsgpmfyvvuqv', 'iwsgpmfyvvuqv');
ANALYZE TABLE b,bb;
Table Op Msg_type Msg_text
test.b analyze status OK
test.bb analyze status OK
EXPLAIN SELECT gp1 . col_varchar AS g1
FROM b AS gp1 LEFT JOIN bb AS gp2 USING ( col_varchar_key )
WHERE gp1 . col_int IN (
SELECT p1 . col_int AS p1
FROM bb AS p1 LEFT JOIN bb AS p2
ON ( p1 . col_int >= p2 . col_int_key )
WHERE ( p1 . col_int , gp1 . col_int ) IN (
SELECT c1 . col_int AS C1
, c1 . col_int AS C2
FROM b AS c1 LEFT JOIN bb AS c2 USING ( col_varchar )
WHERE ( gp1 . col_varchar_key >= 'n' )
)
AND ( gp1 . col_varchar < 'e' )
)
AND ( gp1 . col_varchar_key <> 'y' )
ORDER BY gp1 . col_varchar_key LIMIT 4;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE gp1 NULL range col_varchar_key,col_varchar_key_2,col_varchar_key_3 col_varchar_key_3 82 NULL 3 33.33 Using index condition; Using where
1 SIMPLE gp2 NULL ref col_varchar_key col_varchar_key 42 test.gp1.col_varchar_key 1 100.00 Using where
1 SIMPLE c1 NULL ALL NULL NULL NULL NULL 4 25.00 Using where
1 SIMPLE p1 NULL ALL NULL NULL NULL NULL 5 20.00 Using where
1 SIMPLE p2 NULL index NULL col_varchar_key 46 NULL 5 100.00 Using where; Using index
1 SIMPLE c2 NULL ALL NULL NULL NULL NULL 5 100.00 Using where; FirstMatch(gp2)
Warnings:
Note 1276 Field or reference 'test.gp1.col_int' of SELECT #2 was resolved in SELECT #1
Note 1276 Field or reference 'test.gp1.col_varchar_key' of SELECT #3 was resolved in SELECT #1
Note 1276 Field or reference 'test.gp1.col_varchar' of SELECT #2 was resolved in SELECT #1
Note 1003 /* select#1 */ select `test`.`gp1`.`col_varchar` AS `g1` from `test`.`b` `gp1` left join `test`.`bb` `gp2` on((`test`.`gp2`.`col_varchar_key` = `test`.`gp1`.`col_varchar_key`)) semi join (`test`.`bb` `p1` left join `test`.`bb` `p2` on((`test`.`p1`.`col_int` >= `test`.`p2`.`col_int_key`)) join `test`.`b` `c1` left join `test`.`bb` `c2` on((`test`.`c1`.`col_varchar` = `test`.`c2`.`col_varchar`))) where ((`test`.`c1`.`col_int` = `test`.`gp1`.`col_int`) and (`test`.`p1`.`col_int` = `test`.`gp1`.`col_int`) and (`test`.`gp1`.`col_varchar_key` <> 'y') and (`test`.`gp1`.`col_varchar` < 'e') and (`test`.`gp1`.`col_varchar_key` >= 'n')) order by `test`.`gp1`.`col_varchar_key` limit 4
SELECT gp1 . col_varchar AS g1
FROM b AS gp1 LEFT JOIN bb AS gp2 USING ( col_varchar_key )
WHERE gp1 . col_int IN (
SELECT p1 . col_int AS p1
FROM bb AS p1 LEFT JOIN bb AS p2
ON ( p1 . col_int >= p2 . col_int_key )
WHERE ( p1 . col_int , gp1 . col_int ) IN (
SELECT c1 . col_int AS C1
, c1 . col_int AS C2
FROM b AS c1 LEFT JOIN bb AS c2 USING ( col_varchar )
WHERE ( gp1 . col_varchar_key >= 'n' )
)
AND ( gp1 . col_varchar < 'e' )
)
AND ( gp1 . col_varchar_key <> 'y' )
ORDER BY gp1 . col_varchar_key LIMIT 4;
g1
DROP TABLE b,bb;
#
# Bug#23759797: DESC INDEX BACKWARD SCAN SHOWS WRONG RESULTS
#
CREATE TABLE t1 (
col_varchar_255_latin1_key varchar(255) DEFAULT NULL,
pk int(11) NOT NULL AUTO_INCREMENT,
KEY (pk DESC),
KEY k3 (col_varchar_255_latin1_key DESC)
);
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO t1(col_varchar_255_latin1_key, pk) VALUES
('l',4), ('something',3), ('ycyoybhug',2), ('l',5), ('my',1),
('l',4),('l',4),('l',4),('l',4),('l',4),('l',4),
('l',4),('l',4),('l',4),('l',4),('l',4),('l',4),
('l',4),('l',4),('l',4),('l',4),('l',4),('l',4),
('l',4),('l',4),('l',4),('l',4),('l',4),('l',4);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
SELECT
t1 . pk AS field1,
t1 . pk AS field2
FROM t1 LEFT JOIN t1 AS t2
ON t1 . col_varchar_255_latin1_key = t2 . col_varchar_255_latin1_key
WHERE t1 . pk <> 4
ORDER BY field1, field2 DESC;
field1 field2
1 1
2 2
3 3
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
5 5
EXPLAIN SELECT
t1 . pk AS field1,
t1 . pk AS field2
FROM t1 LEFT JOIN t1 AS t2
ON t1 . col_varchar_255_latin1_key = t2 . col_varchar_255_latin1_key
WHERE t1 . pk <> 4
ORDER BY field1, field2 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range pk pk 4 NULL # # Using index condition; Backward index scan
1 SIMPLE t2 NULL ref k3 k3 1023 test.t1.col_varchar_255_latin1_key # # Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`pk` AS `field1`,`test`.`t1`.`pk` AS `field2` from `test`.`t1` left join `test`.`t1` `t2` on((`test`.`t2`.`col_varchar_255_latin1_key` = `test`.`t1`.`col_varchar_255_latin1_key`)) where (`test`.`t1`.`pk` <> 4) order by `field1`
DROP TABLE t1;
CREATE TABLE t1 (
pk int(11) NOT NULL AUTO_INCREMENT,
col_int_key int(11) DEFAULT NULL,
PRIMARY KEY (pk DESC),
KEY k3 (col_int_key)
);
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO t1 VALUES (25,9), (24,1), (23,-74383360), (22,-855900160),
(21,NULL), (20,1596522496), (19,9), (18,1), (17,NULL), (16,NULL),
(15,1808465920), (14,NULL), (13,588644352), (12,3), (11,6), (10,NULL),
(9,NULL), (8,8), (7,NULL), (6,NULL), (5,-1018232832), (4,5), (3,NULL),
(2,NULL), (1,NULL);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
SELECT DISTINCT
t1 . pk AS field1
FROM t1 LEFT JOIN t1 AS t2
ON t1 . pk = t2 . pk
WHERE ( t1 . col_int_key IS NULL AND t1 . pk != 4 )
GROUP BY field1
HAVING field1 != 6
ORDER BY field1 ASC;
field1
1
2
3
7
9
10
14
16
17
21
EXPLAIN SELECT DISTINCT
t1 . pk AS field1
FROM t1 LEFT JOIN t1 AS t2
ON t1 . pk = t2 . pk
WHERE ( t1 . col_int_key IS NULL AND t1 . pk != 4 )
GROUP BY field1
HAVING field1 != 6
ORDER BY field1 ASC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL range PRIMARY,k3 k3 9 NULL 11 100.00 Using where; Using index; Using temporary; Using filesort
1 SIMPLE t2 NULL eq_ref PRIMARY PRIMARY 4 test.t1.pk 1 100.00 Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`pk` AS `field1` from `test`.`t1` left join `test`.`t1` `t2` on((`test`.`t2`.`pk` = `test`.`t1`.`pk`)) where ((`test`.`t1`.`col_int_key` is null) and (`test`.`t1`.`pk` <> 4)) group by `field1` having (`field1` <> 6) order by `field1`
EXPLAIN UPDATE t1
SET t1.pk = pk + 1000
WHERE ( t1 . col_int_key IS NULL AND t1 . pk != 4 )
ORDER BY pk ASC LIMIT 3;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 UPDATE t1 NULL range PRIMARY,k3 PRIMARY 4 const 24 100.00 Using where; Backward index scan; Using temporary
Warnings:
Note 1003 update `test`.`t1` set `test`.`t1`.`pk` = (`test`.`t1`.`pk` + 1000) where ((`test`.`t1`.`col_int_key` is null) and (`test`.`t1`.`pk` <> 4)) order by `test`.`t1`.`pk` limit 3
DROP TABLE t1;
#
#
# Bug #23738137: WL1074:RESULT DIFFERENCE SEEN FOR
# QUERY WITH OR IN JOIN CONDITION
#
CREATE TABLE t1 (
pk INTEGER NOT NULL,
col_int_key INTEGER DEFAULT NULL,
col_varchar_key varchar(20) DEFAULT NULL,
col_varchar varchar(20) DEFAULT NULL,
PRIMARY KEY (pk DESC),
KEY col_int_key (col_int_key DESC),
KEY col_varchar_key (col_varchar_key DESC)
) charset latin1;
INSERT INTO t1 VALUES (20,8,'eiw','eiw'),(19,8,'oeiws','oeiws'),
(18,NULL,'koeiw','koeiw'),(17,3,'kkoei','kkoei'),
(16,9,'ukkoe','ukkoe'),(15,5,'qukko','qukko'),
(14,2,'kqukk','kqukk'),(13,80,'ukquk','ukquk'),
(12,5,'lukqu','lukqu'),(10,NULL,'alukq','alukq'),
(9,3,'maluk','maluk'),(8,NULL,NULL,NULL),
(7,9,'ymalu','ymalu'),(6,3,'kymal','kymal'),
(5,6,'vkyma','vkyma'),(4,8,'vvkym','vvkym'),
(3,3,'jjvvk','jjvvk'),(1,5,'bjjvv','bjjvv');
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT STRAIGHT_JOIN count(t1.col_varchar) FROM t1 JOIN t1 AS t2 ON
(t2.pk = t1.col_int_key) OR (t2.col_varchar_key = t1.col_varchar_key);
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL ALL col_int_key,col_varchar_key NULL NULL NULL 18 100.00 NULL
1 SIMPLE t2 NULL ALL PRIMARY,col_varchar_key NULL NULL NULL 18 19.00 Range checked for each record (index map: 0x5)
Warnings:
Note 1003 /* select#1 */ select straight_join count(`test`.`t1`.`col_varchar`) AS `count(t1.col_varchar)` from `test`.`t1` join `test`.`t1` `t2` where ((`test`.`t2`.`pk` = `test`.`t1`.`col_int_key`) or (`test`.`t2`.`col_varchar_key` = `test`.`t1`.`col_varchar_key`))
SELECT STRAIGHT_JOIN count(t1.col_varchar) FROM t1 JOIN t1 AS t2 ON
(t2.pk = t1.col_int_key) OR (t2.col_varchar_key = t1.col_varchar_key);
count(t1.col_varchar)
29
EXPLAIN SELECT count(t1.col_varchar) FROM t1 JOIN t1 AS t2 ON (t2.pk = t1.col_int_key)
OR (t2.col_varchar_key = t1.col_varchar_key);
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL ALL col_int_key,col_varchar_key NULL NULL NULL 18 100.00 NULL
1 SIMPLE t2 NULL ALL PRIMARY,col_varchar_key NULL NULL NULL 18 19.00 Range checked for each record (index map: 0x5)
Warnings:
Note 1003 /* select#1 */ select count(`test`.`t1`.`col_varchar`) AS `count(t1.col_varchar)` from `test`.`t1` join `test`.`t1` `t2` where ((`test`.`t2`.`pk` = `test`.`t1`.`col_int_key`) or (`test`.`t2`.`col_varchar_key` = `test`.`t1`.`col_varchar_key`))
SELECT count(t1.col_varchar) FROM t1 JOIN t1 AS t2 ON (t2.pk = t1.col_int_key)
OR (t2.col_varchar_key = t1.col_varchar_key);
count(t1.col_varchar)
29
DROP TABLE t1;
# End of test for Bug#23738137
#
# Bug#24294552:MULTI KEY DESC INDEX ON GCOL GIVES INCORRECT RESULTS
#
CREATE TABLE t2 (
col_int int(11) DEFAULT NULL,
pk int(11) NOT NULL AUTO_INCREMENT,
col_int_key int(11),
PRIMARY KEY (pk DESC),
KEY k2 (col_int_key, col_int DESC)
);
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO
t2(col_int,col_int_key) VALUES (1,2), (2,4), (3,6), (4,8), (5,10), (6,12),
(7,14), (8,16), (9,18);
CREATE TABLE t1 (
col_int int(11) DEFAULT NULL,
pk int(11) NOT NULL,
col_int_key int(11)
);
Warnings:
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
Warning 1681 Integer display width is deprecated and will be removed in a future release.
INSERT INTO t1(pk, col_int, col_int_key) VALUES (4,3,6), (5,4,8), (6,2,4);
ANALYZE TABLE t1, t2;
Table Op Msg_type Msg_text
test.t1 analyze status OK
test.t2 analyze status OK
SELECT STRAIGHT_JOIN
t1 . col_int_key AS field1 ,
t2 . col_int AS field2
FROM t1 LEFT JOIN t2 FORCE INDEX(k2)
ON t1 . col_int = t2 . col_int
WHERE ( t2 . col_int_key <= t1 . col_int_key AND t1 . pk >= t2 . pk )
ORDER BY field1, field2 DESC;
field1 field2
4 2
6 3
8 4
EXPLAIN SELECT STRAIGHT_JOIN
t1 . col_int_key AS field1 ,
t2 . col_int AS field2
FROM t1 LEFT JOIN t2 force index(k2)
ON t1 . col_int = t2 . col_int
WHERE ( t2 . col_int_key <= t1 . col_int_key AND t1 . pk >= t2 . pk )
ORDER BY field1, field2 DESC;
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL ALL NULL NULL NULL NULL # # Using temporary; Using filesort
1 SIMPLE t2 NULL ALL k2 NULL NULL NULL # # Range checked for each record (index map: 0x2)
Warnings:
Note 1003 /* select#1 */ select straight_join `test`.`t1`.`col_int_key` AS `field1`,`test`.`t2`.`col_int` AS `field2` from `test`.`t1` join `test`.`t2` FORCE INDEX (`k2`) where ((`test`.`t2`.`col_int` = `test`.`t1`.`col_int`) and (`test`.`t2`.`col_int_key` <= `test`.`t1`.`col_int_key`) and (`test`.`t1`.`pk` >= `test`.`t2`.`pk`)) order by `field1`,`field2` desc
DROP TABLE t1,t2;
#
#
# Bug#24300848:WL1074: INNODB: ASSERTION FAILURE:
# BTR0PCUR.CC:268:CURSOR->OLD_REC
#
CREATE TABLE t1(col1 int , col2 int, PRIMARY KEY (col1 DESC))
PARTITION BY RANGE (col1) (PARTITION p0 VALUES LESS THAN (5));
INSERT INTO t1 VALUES(1, 10);
SELECT * FROM t1 WHERE col1 IN (1, 2);
col1 col2
1 10
DROP TABLE t1;
# End of test for Bug#24300848
#
# Bug#24431177: WL1074:LEFT JOIN QUERY USING INDEX SHOWS
# WRONG QEP AND RESULTS ON 2ND EXECUTION
#
CREATE TABLE t1(
pk INTEGER NOT NULL AUTO_INCREMENT,
col_int_key INTEGER DEFAULT NULL,
PRIMARY KEY (pk DESC),
KEY col_int_key (col_int_key DESC)
);
INSERT INTO t1 VALUES (3,15),(6,8),(20,6),(15,6),(18,5),(17,5),
(16,5),(13,5),(12,5),(9,5),(8,5),(7,5),(5,5),(11,4),(4,4),
(19,3),(10,2),(1,2),(14,1),(2,1);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 WHERE pk IN (6,2)
OR (col_int_key >= 7 AND col_int_key < 13);
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index PRIMARY,col_int_key col_int_key 5 NULL 20 28.89 Using where; Using index
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`pk` AS `pk`,`test`.`t1`.`col_int_key` AS `col_int_key` from `test`.`t1` where ((`test`.`t1`.`pk` in (6,2)) or ((`test`.`t1`.`col_int_key` >= 7) and (`test`.`t1`.`col_int_key` < 13)))
SELECT * FROM t1 WHERE pk IN (6,2)
OR (col_int_key >= 7 AND col_int_key < 13);
pk col_int_key
2 1
6 8
ALTER TABLE t1 ADD INDEX key1 (pk);
ALTER TABLE t1 ADD INDEX key2 (col_int_key);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status OK
EXPLAIN SELECT * FROM t1 FORCE INDEX (key1,col_int_key) WHERE pk IN (6,2)
OR (col_int_key >= 7 AND col_int_key < 13);
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 NULL index_merge col_int_key,key1 key1,col_int_key 4,5 NULL 2 100.00 Using sort_union(key1,col_int_key); Using where
Warnings:
Note 1003 /* select#1 */ select `test`.`t1`.`pk` AS `pk`,`test`.`t1`.`col_int_key` AS `col_int_key` from `test`.`t1` FORCE INDEX (`col_int_key`) FORCE INDEX (`key1`) where ((`test`.`t1`.`pk` in (6,2)) or ((`test`.`t1`.`col_int_key` >= 7) and (`test`.`t1`.`col_int_key` < 13)))
SELECT * FROM t1 FORCE INDEX (key1,col_int_key) WHERE pk IN (6,2)
OR (col_int_key >= 7 AND col_int_key < 13);
pk col_int_key
2 1
6 8
DROP TABLE t1;
# End of test for Bug#24431777
CREATE TABLE t1(
a INTEGER NOT NULL,
b INTEGER NOT NULL,
KEY ab (a DESC,b DESC)
);
INSERT INTO t1 VALUES (78,7),(78,6),(70,1),(47,1),(15,4),(15,1),
(10,6),(3,6),(2,56),(2,6),(1,56);
SELECT * FROM t1 WHERE (
( b =1 AND a BETWEEN 14 AND 21 ) OR
( b =2 AND a BETWEEN 16 AND 18 ) OR
( b =3 AND a BETWEEN 15 AND 19 ) OR
(a BETWEEN 19 AND 47) );
a b
47 1
15 1
DROP TABLE t1;
#
# Bug #25899921: INCORRECT BEHAVIOR WITH DESC INDEX AND
# IMPOSSIBLE CONDITION
#
CREATE TABLE t1 (a INT, b DATE, KEY(b,a DESC));
SET @g:='1';
DELETE FROM t1 WHERE b=@g ORDER BY b, a LIMIT 1;
ERROR 22007: Incorrect date value: '1' for column 'b' at row 1
DROP TABLE t1;
# End of test for Bug#25899921
|