forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit9e43e87
committed
Fix contrib/pg_trgm's extraction of trigrams from regular expressions.
The logic for removing excess trigrams from the result was faulty.It intends to avoid merging the initial and final states of the NFA,which is necessary, but in testing whether removal of a specific trigramwould cause that, it failed to consider the combined effects of all thestate merges that that trigram's removal would cause. This could resultin a broken final graph that would never match anything, leading to GINor GiST indexscans not finding anything.To fix, add a "tentParent" field that is used only within this loop,and set it to show state merges that we are tentatively going to do.While examining a particular arc, we must chase up through tentParentlinks as well as regular parent links (the former can only appear atopthe latter), and we must account for state init/fin flag merges thathaven't actually been done yet.To simplify the latter, combine the separate init and fin bool fieldsinto a bitmap flags field. I also chose to get rid of the "children"state list, which seems entirely inessential.Per bug #14563 from Alexey Isayko, which the added test cases are based on.Back-patch to 9.3 where this code was added.Report:https://postgr.es/m/20170222111446.1256.67547@wrigleys.postgresql.orgDiscussion:https://postgr.es/m/8816.1487787594@sss.pgh.pa.us1 parent502a383 commit9e43e87
File tree
3 files changed
+91
-37
lines changed- contrib/pg_trgm
- expected
- sql
3 files changed
+91
-37
lines changedLines changed: 18 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1202 | 1202 |
| |
1203 | 1203 |
| |
1204 | 1204 |
| |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
| 1210 | + | |
1205 | 1211 |
| |
1206 | 1212 |
| |
1207 | 1213 |
| |
| |||
2346 | 2352 |
| |
2347 | 2353 |
| |
2348 | 2354 |
| |
| 2355 | + | |
| 2356 | + | |
| 2357 | + | |
| 2358 | + | |
| 2359 | + | |
| 2360 | + | |
2349 | 2361 |
| |
2350 | 2362 |
| |
2351 | 2363 |
| |
| |||
3475 | 3487 |
| |
3476 | 3488 |
| |
3477 | 3489 |
| |
| 3490 | + | |
| 3491 | + | |
| 3492 | + | |
| 3493 | + | |
| 3494 | + | |
| 3495 | + | |
3478 | 3496 |
| |
3479 | 3497 |
| |
3480 | 3498 |
| |
|
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
| 29 | + | |
29 | 30 |
| |
30 | 31 |
| |
31 | 32 |
| |
| |||
36 | 37 |
| |
37 | 38 |
| |
38 | 39 |
| |
| 40 | + | |
39 | 41 |
| |
40 | 42 |
| |
41 | 43 |
| |
| |||
44 | 46 |
| |
45 | 47 |
| |
46 | 48 |
| |
| 49 | + | |
47 | 50 |
| |
48 | 51 |
| |
49 | 52 |
| |
|
Lines changed: 70 additions & 37 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
318 | 318 |
| |
319 | 319 |
| |
320 | 320 |
| |
321 |
| - | |
322 |
| - | |
| 321 | + | |
323 | 322 |
| |
324 |
| - | |
| 323 | + | |
325 | 324 |
| |
326 | 325 |
| |
| 326 | + | |
| 327 | + | |
| 328 | + | |
327 | 329 |
| |
328 | 330 |
| |
329 | 331 |
| |
330 | 332 |
| |
331 | 333 |
| |
332 |
| - | |
333 |
| - | |
| 334 | + | |
334 | 335 |
| |
335 |
| - | |
| 336 | + | |
336 | 337 |
| |
337 | 338 |
| |
338 | 339 |
| |
| |||
599 | 600 |
| |
600 | 601 |
| |
601 | 602 |
| |
602 |
| - | |
| 603 | + | |
603 | 604 |
| |
604 | 605 |
| |
605 | 606 |
| |
| |||
925 | 926 |
| |
926 | 927 |
| |
927 | 928 |
| |
928 |
| - | |
| 929 | + | |
929 | 930 |
| |
930 | 931 |
| |
931 | 932 |
| |
| |||
943 | 944 |
| |
944 | 945 |
| |
945 | 946 |
| |
946 |
| - | |
| 947 | + | |
947 | 948 |
| |
948 | 949 |
| |
949 | 950 |
| |
| |||
968 | 969 |
| |
969 | 970 |
| |
970 | 971 |
| |
971 |
| - | |
| 972 | + | |
972 | 973 |
| |
973 | 974 |
| |
974 | 975 |
| |
| |||
980 | 981 |
| |
981 | 982 |
| |
982 | 983 |
| |
983 |
| - | |
| 984 | + | |
984 | 985 |
| |
985 | 986 |
| |
986 | 987 |
| |
| |||
989 | 990 |
| |
990 | 991 |
| |
991 | 992 |
| |
992 |
| - | |
| 993 | + | |
993 | 994 |
| |
994 | 995 |
| |
995 | 996 |
| |
| |||
1059 | 1060 |
| |
1060 | 1061 |
| |
1061 | 1062 |
| |
1062 |
| - | |
| 1063 | + | |
1063 | 1064 |
| |
1064 | 1065 |
| |
1065 | 1066 |
| |
| |||
1385 | 1386 |
| |
1386 | 1387 |
| |
1387 | 1388 |
| |
1388 |
| - | |
1389 |
| - | |
| 1389 | + | |
1390 | 1390 |
| |
1391 |
| - | |
| 1391 | + | |
1392 | 1392 |
| |
1393 | 1393 |
| |
1394 | 1394 |
| |
| |||
1582 | 1582 |
| |
1583 | 1583 |
| |
1584 | 1584 |
| |
| 1585 | + | |
| 1586 | + | |
1585 | 1587 |
| |
1586 | 1588 |
| |
1587 | 1589 |
| |
1588 | 1590 |
| |
1589 | 1591 |
| |
1590 | 1592 |
| |
1591 | 1593 |
| |
1592 |
| - | |
1593 |
| - | |
| 1594 | + | |
| 1595 | + | |
| 1596 | + | |
| 1597 | + | |
| 1598 | + | |
| 1599 | + | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + | |
| 1606 | + | |
| 1607 | + | |
| 1608 | + | |
| 1609 | + | |
| 1610 | + | |
1594 | 1611 |
| |
1595 | 1612 |
| |
1596 | 1613 |
| |
1597 | 1614 |
| |
| 1615 | + | |
| 1616 | + | |
| 1617 | + | |
| 1618 | + | |
1598 | 1619 |
| |
| 1620 | + | |
| 1621 | + | |
| 1622 | + | |
| 1623 | + | |
| 1624 | + | |
| 1625 | + | |
| 1626 | + | |
| 1627 | + | |
| 1628 | + | |
| 1629 | + | |
| 1630 | + | |
| 1631 | + | |
| 1632 | + | |
| 1633 | + | |
| 1634 | + | |
| 1635 | + | |
| 1636 | + | |
| 1637 | + | |
| 1638 | + | |
1599 | 1639 |
| |
1600 | 1640 |
| |
1601 | 1641 |
| |
| |||
1611 | 1651 |
| |
1612 | 1652 |
| |
1613 | 1653 |
| |
| 1654 | + | |
1614 | 1655 |
| |
| 1656 | + | |
| 1657 | + | |
| 1658 | + | |
| 1659 | + | |
1615 | 1660 |
| |
1616 | 1661 |
| |
1617 | 1662 |
| |
| |||
1754 | 1799 |
| |
1755 | 1800 |
| |
1756 | 1801 |
| |
1757 |
| - | |
1758 |
| - | |
1759 | 1802 |
| |
1760 | 1803 |
| |
1761 | 1804 |
| |
1762 | 1805 |
| |
1763 |
| - | |
1764 |
| - | |
1765 |
| - | |
| 1806 | + | |
| 1807 | + | |
1766 | 1808 |
| |
1767 |
| - | |
1768 |
| - | |
1769 |
| - | |
1770 |
| - | |
1771 |
| - | |
1772 |
| - | |
1773 |
| - | |
| 1809 | + | |
1774 | 1810 |
| |
1775 |
| - | |
1776 |
| - | |
1777 |
| - | |
1778 | 1811 |
| |
1779 | 1812 |
| |
1780 | 1813 |
| |
| |||
1843 | 1876 |
| |
1844 | 1877 |
| |
1845 | 1878 |
| |
1846 |
| - | |
| 1879 | + | |
1847 | 1880 |
| |
1848 |
| - | |
| 1881 | + | |
1849 | 1882 |
| |
1850 | 1883 |
| |
1851 | 1884 |
| |
| |||
2109 | 2142 |
| |
2110 | 2143 |
| |
2111 | 2144 |
| |
2112 |
| - | |
| 2145 | + | |
2113 | 2146 |
| |
2114 |
| - | |
| 2147 | + | |
2115 | 2148 |
| |
2116 | 2149 |
| |
2117 | 2150 |
| |
|
0 commit comments
Comments
(0)