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 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045
|
/*-------------------------------------------------------------------------
*
* mysql_fdw.c
* Foreign-data wrapper for remote MySQL servers
*
* Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
* Portions Copyright (c) 2004-2024, EnterpriseDB Corporation.
*
* IDENTIFICATION
* mysql_fdw.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
/*
* Must be included before mysql.h as it has some conflicting definitions like
* list_length, etc.
*/
#include "mysql_fdw.h"
#include <dlfcn.h>
#include <errmsg.h>
#include <mysql.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include "access/htup_details.h"
#include "access/sysattr.h"
#include "access/reloptions.h"
#include "access/table.h"
#include "commands/defrem.h"
#include "commands/explain.h"
#include "catalog/heap.h"
#include "catalog/pg_type.h"
#include "foreign/fdwapi.h"
#include "miscadmin.h"
#include "mysql_pushability.h"
#include "mysql_query.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "nodes/nodes.h"
#if PG_VERSION_NUM >= 140000
#include "optimizer/appendinfo.h"
#endif
#include "optimizer/pathnode.h"
#include "optimizer/paths.h"
#include "optimizer/planmain.h"
#include "optimizer/optimizer.h"
#include "optimizer/restrictinfo.h"
#include "optimizer/tlist.h"
#include "parser/parsetree.h"
#if PG_VERSION_NUM >= 160000
#include "parser/parse_relation.h"
#endif
#include "storage/ipc.h"
#include "utils/builtins.h"
#include "utils/datum.h"
#include "utils/guc.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/regproc.h"
#include "utils/selfuncs.h"
#include "utils/syscache.h"
#include "utils/typcache.h"
/* Declarations for dynamic loading */
PG_MODULE_MAGIC;
int ((mysql_options) (MYSQL *mysql, enum mysql_option option,
const void *arg));
int ((mysql_stmt_prepare) (MYSQL_STMT *stmt, const char *query,
unsigned long length));
int ((mysql_stmt_execute) (MYSQL_STMT *stmt));
int ((mysql_stmt_fetch) (MYSQL_STMT *stmt));
int ((mysql_query) (MYSQL *mysql, const char *q));
bool ((mysql_stmt_attr_set) (MYSQL_STMT *stmt,
enum enum_stmt_attr_type attr_type,
const void *attr));
bool ((mysql_stmt_close) (MYSQL_STMT *stmt));
bool ((mysql_stmt_reset) (MYSQL_STMT *stmt));
bool ((mysql_free_result) (MYSQL_RES *result));
bool ((mysql_stmt_bind_param) (MYSQL_STMT *stmt, MYSQL_BIND *bnd));
bool ((mysql_stmt_bind_result) (MYSQL_STMT *stmt, MYSQL_BIND *bnd));
MYSQL_STMT *((mysql_stmt_init) (MYSQL *mysql));
MYSQL_RES *((mysql_stmt_result_metadata) (MYSQL_STMT *stmt));
int ((mysql_stmt_store_result) (MYSQL_STMT *stmt));
MYSQL_ROW((mysql_fetch_row) (MYSQL_RES *result));
MYSQL_FIELD *((mysql_fetch_field) (MYSQL_RES *result));
MYSQL_FIELD *((mysql_fetch_fields) (MYSQL_RES *result));
const char *((mysql_error) (MYSQL *mysql));
void ((mysql_close) (MYSQL *sock));
MYSQL_RES *((mysql_store_result) (MYSQL *mysql));
MYSQL *((mysql_init) (MYSQL *mysql));
bool ((mysql_ssl_set) (MYSQL *mysql, const char *key, const char *cert,
const char *ca, const char *capath,
const char *cipher));
MYSQL *((mysql_real_connect) (MYSQL *mysql, const char *host, const char *user,
const char *passwd, const char *db,
unsigned int port, const char *unix_socket,
unsigned long clientflag));
const char *((mysql_get_host_info) (MYSQL *mysql));
const char *((mysql_get_server_info) (MYSQL *mysql));
int ((mysql_get_proto_info) (MYSQL *mysql));
unsigned int ((mysql_stmt_errno) (MYSQL_STMT *stmt));
unsigned int ((mysql_errno) (MYSQL *mysql));
unsigned int ((mysql_num_fields) (MYSQL_RES *result));
unsigned int ((mysql_num_rows) (MYSQL_RES *result));
#define DEFAULTE_NUM_ROWS 1000
/*
* In PG 9.5.1 the number will be 90501,
* our version is 2.9.2 so number will be 20902
*/
#define CODE_VERSION 20902
/*
* The number of rows in a foreign relation are estimated to be so less that
* an in-memory sort on those many rows wouldn't cost noticeably higher than
* the underlying scan. Hence for now, cost sorts same as underlying scans.
*/
#define DEFAULT_MYSQL_SORT_MULTIPLIER 1
/*
* Indexes of FDW-private information stored in fdw_private lists.
*
* These items are indexed with the enum mysqlFdwScanPrivateIndex, so an item
* can be fetched with list_nth(). For example, to get the SELECT statement:
* sql = strVal(list_nth(fdw_private, mysqlFdwScanPrivateSelectSql));
*/
enum mysqlFdwScanPrivateIndex
{
/* SQL statement to execute remotely (as a String node) */
mysqlFdwScanPrivateSelectSql,
/* Integer list of attribute numbers retrieved by the SELECT */
mysqlFdwScanPrivateRetrievedAttrs,
/*
* String describing join i.e. names of relations being joined and types
* of join, added when the scan is join
*/
mysqlFdwScanPrivateRelations,
/*
* List of Var node lists for constructing the whole-row references of
* base relations involved in pushed down join.
*/
mysqlFdwPrivateWholeRowLists,
/*
* Targetlist representing the result fetched from the foreign server if
* whole-row references are involved.
*/
mysqlFdwPrivateScanTList
};
/*
* This enum describes what's kept in the fdw_private list for a ForeignPath.
* We store:
*
* 1) Boolean flag showing if the remote query has the final sort
* 2) Boolean flag showing if the remote query has the LIMIT clause
*/
enum FdwPathPrivateIndex
{
/* has-final-sort flag (as an integer Value node) */
FdwPathPrivateHasFinalSort,
/* has-limit flag (as an integer Value node) */
FdwPathPrivateHasLimit
};
extern PGDLLEXPORT void _PG_init(void);
extern Datum mysql_fdw_handler(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(mysql_fdw_handler);
PG_FUNCTION_INFO_V1(mysql_fdw_version);
PG_FUNCTION_INFO_V1(mysql_display_pushdown_list);
/*
* FDW callback routines
*/
static void mysqlExplainForeignScan(ForeignScanState *node, ExplainState *es);
static void mysqlBeginForeignScan(ForeignScanState *node, int eflags);
static TupleTableSlot *mysqlIterateForeignScan(ForeignScanState *node);
static void mysqlReScanForeignScan(ForeignScanState *node);
static void mysqlEndForeignScan(ForeignScanState *node);
static List *mysqlPlanForeignModify(PlannerInfo *root, ModifyTable *plan,
Index resultRelation, int subplan_index);
static void mysqlBeginForeignModify(ModifyTableState *mtstate,
ResultRelInfo *resultRelInfo,
List *fdw_private, int subplan_index,
int eflags);
static TupleTableSlot *mysqlExecForeignInsert(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot);
#if PG_VERSION_NUM >= 140000
static void mysqlAddForeignUpdateTargets(PlannerInfo *root,
Index rtindex,
RangeTblEntry *target_rte,
Relation target_relation);
#else
static void mysqlAddForeignUpdateTargets(Query *parsetree,
RangeTblEntry *target_rte,
Relation target_relation);
#endif
static TupleTableSlot *mysqlExecForeignUpdate(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot);
static TupleTableSlot *mysqlExecForeignDelete(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot);
static void mysqlEndForeignModify(EState *estate,
ResultRelInfo *resultRelInfo);
static void mysqlGetForeignRelSize(PlannerInfo *root, RelOptInfo *baserel,
Oid foreigntableid);
static void mysqlGetForeignPaths(PlannerInfo *root, RelOptInfo *baserel,
Oid foreigntableid);
static bool mysqlAnalyzeForeignTable(Relation relation,
AcquireSampleRowsFunc *func,
BlockNumber *totalpages);
static ForeignScan *mysqlGetForeignPlan(PlannerInfo *root,
RelOptInfo *foreignrel,
Oid foreigntableid,
ForeignPath *best_path, List *tlist,
List *scan_clauses, Plan *outer_plan);
static void mysqlEstimateCosts(PlannerInfo *root, RelOptInfo *baserel,
Cost *startup_cost, Cost *total_cost,
Oid foreigntableid);
static void mysqlGetForeignJoinPaths(PlannerInfo *root,
RelOptInfo *joinrel,
RelOptInfo *outerrel,
RelOptInfo *innerrel,
JoinType jointype,
JoinPathExtraData *extra);
static bool mysqlRecheckForeignScan(ForeignScanState *node,
TupleTableSlot *slot);
static void mysqlGetForeignUpperPaths(PlannerInfo *root,
UpperRelationKind stage,
RelOptInfo *input_rel,
RelOptInfo *output_rel,
void *extra);
static List *mysqlImportForeignSchema(ImportForeignSchemaStmt *stmt,
Oid serverOid);
static void mysqlBeginForeignInsert(ModifyTableState *mtstate,
ResultRelInfo *resultRelInfo);
static void mysqlEndForeignInsert(EState *estate,
ResultRelInfo *resultRelInfo);
#if PG_VERSION_NUM >= 140000
static void mysqlExecForeignTruncate(List *rels,
DropBehavior behavior,
bool restart_seqs);
#endif
/*
* Helper functions
*/
bool mysql_load_library(void);
static void mysql_fdw_exit(int code, Datum arg);
static bool mysql_is_column_unique(Oid foreigntableid);
static void prepare_query_params(PlanState *node,
List *fdw_exprs,
int numParams,
FmgrInfo **param_flinfo,
List **param_exprs,
const char ***param_values,
Oid **param_types);
static void process_query_params(ExprContext *econtext,
FmgrInfo *param_flinfo,
List *param_exprs,
const char **param_values,
MYSQL_BIND **mysql_bind_buf,
Oid *param_types);
static void bind_stmt_params_and_exec(ForeignScanState *node);
static bool mysql_foreign_join_ok(PlannerInfo *root, RelOptInfo *joinrel,
JoinType jointype, RelOptInfo *outerrel,
RelOptInfo *innerrel,
JoinPathExtraData *extra);
static List *mysql_adjust_whole_row_ref(PlannerInfo *root,
List *scan_var_list,
List **whole_row_lists,
Bitmapset *relids);
static List *mysql_build_scan_list_for_baserel(Oid relid, Index varno,
Bitmapset *attrs_used,
List **retrieved_attrs);
static void mysql_build_whole_row_constr_info(MySQLFdwExecState *festate,
TupleDesc tupdesc,
Bitmapset *relids,
int max_relid,
List *whole_row_lists,
List *scan_tlist,
List *fdw_scan_tlist);
static HeapTuple mysql_get_tuple_with_whole_row(MySQLFdwExecState *festate,
Datum *values, bool *nulls);
static HeapTuple mysql_form_whole_row(MySQLWRState *wr_state, Datum *values,
bool *nulls);
static bool mysql_foreign_grouping_ok(PlannerInfo *root,
RelOptInfo *grouped_rel,
Node *havingQual);
static void mysql_add_foreign_grouping_paths(PlannerInfo *root,
RelOptInfo *input_rel,
RelOptInfo *grouped_rel,
GroupPathExtraData *extra);
static List *mysql_get_useful_ecs_for_relation(PlannerInfo *root,
RelOptInfo *rel);
static List *mysql_get_useful_pathkeys_for_relation(PlannerInfo *root,
RelOptInfo *rel);
#if PG_VERSION_NUM >= 170000
static void mysql_add_paths_with_pathkeys(PlannerInfo *root,
RelOptInfo *rel,
Path *epq_path,
Cost base_startup_cost,
Cost base_total_cost,
List *restrictlist);
#else
static void mysql_add_paths_with_pathkeys(PlannerInfo *root,
RelOptInfo *rel,
Path *epq_path,
Cost base_startup_cost,
Cost base_total_cost);
#endif
static void mysql_add_foreign_ordered_paths(PlannerInfo *root,
RelOptInfo *input_rel,
RelOptInfo *ordered_rel);
static void mysql_add_foreign_final_paths(PlannerInfo *root,
RelOptInfo *input_rel,
RelOptInfo *final_rel,
FinalPathExtraData *extra);
#if PG_VERSION_NUM >= 160000
static TargetEntry *mysql_tlist_member_match_var(Var *var, List *targetlist);
static List *mysql_varlist_append_unique_var(List *varlist, Var *var);
#endif
void *mysql_dll_handle = NULL;
static int wait_timeout = WAIT_TIMEOUT;
static int interactive_timeout = INTERACTIVE_TIMEOUT;
static void mysql_error_print(MYSQL *conn);
static void mysql_stmt_error_print(MySQLFdwExecState *festate,
const char *msg);
static List *getUpdateTargetAttrs(PlannerInfo *root, RangeTblEntry *rte);
#if PG_VERSION_NUM >= 140000
static char *mysql_remove_quotes(char *s1);
#endif
/*
* mysql_load_library function dynamically load the mysql's library
* libmysqlclient.so. The only reason to load the library using dlopen
* is that, mysql and postgres both have function with same name like
* "list_delete", "list_delete" and "list_free" which cause compiler
* error "duplicate function name" and erroneously linking with a function.
* This port of the code is used to avoid the compiler error.
*
* #define list_delete mysql_list_delete
* #include <mysql.h>
* #undef list_delete
*
* But system crashed on function mysql_stmt_close function because
* mysql_stmt_close internally calling "list_delete" function which
* wrongly binds to postgres' "list_delete" function.
*
* The dlopen function provides a parameter "RTLD_DEEPBIND" which
* solved the binding issue.
*
* RTLD_DEEPBIND:
* Place the lookup scope of the symbols in this library ahead of the
* global scope. This means that a self-contained library will use its
* own symbols in preference to global symbols with the same name contained
* in libraries that have already been loaded.
*/
bool
mysql_load_library(void)
{
#if defined(__APPLE__) || defined(__FreeBSD__)
/*
* Mac OS/BSD does not support RTLD_DEEPBIND, but it still works without
* the RTLD_DEEPBIND
*/
mysql_dll_handle = dlopen(_MYSQL_LIBNAME, RTLD_LAZY);
#else
mysql_dll_handle = dlopen(_MYSQL_LIBNAME, RTLD_LAZY | RTLD_DEEPBIND);
#endif
if (mysql_dll_handle == NULL)
return false;
_mysql_stmt_bind_param = dlsym(mysql_dll_handle, "mysql_stmt_bind_param");
_mysql_stmt_bind_result = dlsym(mysql_dll_handle, "mysql_stmt_bind_result");
_mysql_stmt_init = dlsym(mysql_dll_handle, "mysql_stmt_init");
_mysql_stmt_prepare = dlsym(mysql_dll_handle, "mysql_stmt_prepare");
_mysql_stmt_execute = dlsym(mysql_dll_handle, "mysql_stmt_execute");
_mysql_stmt_fetch = dlsym(mysql_dll_handle, "mysql_stmt_fetch");
_mysql_query = dlsym(mysql_dll_handle, "mysql_query");
_mysql_stmt_result_metadata = dlsym(mysql_dll_handle, "mysql_stmt_result_metadata");
_mysql_stmt_store_result = dlsym(mysql_dll_handle, "mysql_stmt_store_result");
_mysql_fetch_row = dlsym(mysql_dll_handle, "mysql_fetch_row");
_mysql_fetch_field = dlsym(mysql_dll_handle, "mysql_fetch_field");
_mysql_fetch_fields = dlsym(mysql_dll_handle, "mysql_fetch_fields");
_mysql_stmt_close = dlsym(mysql_dll_handle, "mysql_stmt_close");
_mysql_stmt_reset = dlsym(mysql_dll_handle, "mysql_stmt_reset");
_mysql_free_result = dlsym(mysql_dll_handle, "mysql_free_result");
_mysql_error = dlsym(mysql_dll_handle, "mysql_error");
_mysql_options = dlsym(mysql_dll_handle, "mysql_options");
_mysql_ssl_set = dlsym(mysql_dll_handle, "mysql_ssl_set");
_mysql_real_connect = dlsym(mysql_dll_handle, "mysql_real_connect");
_mysql_close = dlsym(mysql_dll_handle, "mysql_close");
_mysql_init = dlsym(mysql_dll_handle, "mysql_init");
_mysql_stmt_attr_set = dlsym(mysql_dll_handle, "mysql_stmt_attr_set");
_mysql_store_result = dlsym(mysql_dll_handle, "mysql_store_result");
_mysql_stmt_errno = dlsym(mysql_dll_handle, "mysql_stmt_errno");
_mysql_errno = dlsym(mysql_dll_handle, "mysql_errno");
_mysql_num_fields = dlsym(mysql_dll_handle, "mysql_num_fields");
_mysql_num_rows = dlsym(mysql_dll_handle, "mysql_num_rows");
_mysql_get_host_info = dlsym(mysql_dll_handle, "mysql_get_host_info");
_mysql_get_server_info = dlsym(mysql_dll_handle, "mysql_get_server_info");
_mysql_get_proto_info = dlsym(mysql_dll_handle, "mysql_get_proto_info");
if (_mysql_stmt_bind_param == NULL ||
_mysql_stmt_bind_result == NULL ||
_mysql_stmt_init == NULL ||
_mysql_stmt_prepare == NULL ||
_mysql_stmt_execute == NULL ||
_mysql_stmt_fetch == NULL ||
_mysql_query == NULL ||
_mysql_stmt_result_metadata == NULL ||
_mysql_stmt_store_result == NULL ||
_mysql_fetch_row == NULL ||
_mysql_fetch_field == NULL ||
_mysql_fetch_fields == NULL ||
_mysql_stmt_close == NULL ||
_mysql_stmt_reset == NULL ||
_mysql_free_result == NULL ||
_mysql_error == NULL ||
_mysql_options == NULL ||
_mysql_ssl_set == NULL ||
_mysql_real_connect == NULL ||
_mysql_close == NULL ||
_mysql_init == NULL ||
_mysql_stmt_attr_set == NULL ||
_mysql_store_result == NULL ||
_mysql_stmt_errno == NULL ||
_mysql_errno == NULL ||
_mysql_num_fields == NULL ||
_mysql_num_rows == NULL ||
_mysql_get_host_info == NULL ||
_mysql_get_server_info == NULL ||
_mysql_get_proto_info == NULL)
return false;
return true;
}
/*
* Library load-time initialization, sets on_proc_exit() callback for
* backend shutdown.
*/
void
_PG_init(void)
{
if (!mysql_load_library())
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to load the mysql query: \n%s", dlerror()),
errhint("Export LD_LIBRARY_PATH to locate the library.")));
DefineCustomIntVariable("mysql_fdw.wait_timeout",
"Server-side wait_timeout",
"Set the maximum wait_timeout"
"use to set the MySQL session timeout",
&wait_timeout,
WAIT_TIMEOUT,
0,
INT_MAX,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
DefineCustomIntVariable("mysql_fdw.interactive_timeout",
"Server-side interactive timeout",
"Set the maximum interactive timeout"
"use to set the MySQL session timeout",
&interactive_timeout,
INTERACTIVE_TIMEOUT,
0,
INT_MAX,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
on_proc_exit(&mysql_fdw_exit, PointerGetDatum(NULL));
}
/*
* mysql_fdw_exit
* Exit callback function.
*/
static void
mysql_fdw_exit(int code, Datum arg)
{
mysql_cleanup_connection();
}
/*
* Foreign-data wrapper handler function: return
* a struct with pointers to my callback routines.
*/
Datum
mysql_fdw_handler(PG_FUNCTION_ARGS)
{
FdwRoutine *fdwroutine = makeNode(FdwRoutine);
/* Functions for scanning foreign tables */
fdwroutine->GetForeignRelSize = mysqlGetForeignRelSize;
fdwroutine->GetForeignPaths = mysqlGetForeignPaths;
fdwroutine->GetForeignPlan = mysqlGetForeignPlan;
fdwroutine->BeginForeignScan = mysqlBeginForeignScan;
fdwroutine->IterateForeignScan = mysqlIterateForeignScan;
fdwroutine->ReScanForeignScan = mysqlReScanForeignScan;
fdwroutine->EndForeignScan = mysqlEndForeignScan;
/* Functions for updating foreign tables */
fdwroutine->AddForeignUpdateTargets = mysqlAddForeignUpdateTargets;
fdwroutine->PlanForeignModify = mysqlPlanForeignModify;
fdwroutine->BeginForeignModify = mysqlBeginForeignModify;
fdwroutine->ExecForeignInsert = mysqlExecForeignInsert;
fdwroutine->ExecForeignUpdate = mysqlExecForeignUpdate;
fdwroutine->ExecForeignDelete = mysqlExecForeignDelete;
fdwroutine->EndForeignModify = mysqlEndForeignModify;
/* Function for EvalPlanQual rechecks */
fdwroutine->RecheckForeignScan = mysqlRecheckForeignScan;
/* Support functions for EXPLAIN */
fdwroutine->ExplainForeignScan = mysqlExplainForeignScan;
/* Support functions for ANALYZE */
fdwroutine->AnalyzeForeignTable = mysqlAnalyzeForeignTable;
/* Support functions for IMPORT FOREIGN SCHEMA */
fdwroutine->ImportForeignSchema = mysqlImportForeignSchema;
/* Partition routing and/or COPY from */
fdwroutine->BeginForeignInsert = mysqlBeginForeignInsert;
fdwroutine->EndForeignInsert = mysqlEndForeignInsert;
/* Support functions for join push-down */
fdwroutine->GetForeignJoinPaths = mysqlGetForeignJoinPaths;
/* Support functions for upper relation push-down */
fdwroutine->GetForeignUpperPaths = mysqlGetForeignUpperPaths;
#if PG_VERSION_NUM >= 140000
/* Support function for TRUNCATE */
fdwroutine->ExecForeignTruncate = mysqlExecForeignTruncate;
#endif
PG_RETURN_POINTER(fdwroutine);
}
/*
* mysqlBeginForeignScan
* Initiate access to the database
*/
static void
mysqlBeginForeignScan(ForeignScanState *node, int eflags)
{
TupleTableSlot *tupleSlot = node->ss.ss_ScanTupleSlot;
TupleDesc tupleDescriptor = tupleSlot->tts_tupleDescriptor;
MYSQL *conn;
RangeTblEntry *rte;
MySQLFdwExecState *festate;
EState *estate = node->ss.ps.state;
ForeignScan *fsplan = (ForeignScan *) node->ss.ps.plan;
mysql_opt *options;
ListCell *lc;
int atindex = 0;
unsigned long type = (unsigned long) CURSOR_TYPE_READ_ONLY;
Oid userid;
ForeignServer *server;
UserMapping *user;
ForeignTable *table;
char timeout[255];
int numParams;
int rtindex;
List *fdw_private = fsplan->fdw_private;
char sql_mode[255];
/*
* We'll save private state in node->fdw_state.
*/
festate = (MySQLFdwExecState *) palloc(sizeof(MySQLFdwExecState));
node->fdw_state = (void *) festate;
/*
* If whole-row references are involved in pushed down join extract the
* information required to construct those.
*/
if (list_length(fdw_private) >= mysqlFdwPrivateScanTList)
{
List *whole_row_lists = list_nth(fdw_private,
mysqlFdwPrivateWholeRowLists);
List *scan_tlist = list_nth(fdw_private,
mysqlFdwPrivateScanTList);
TupleDesc scan_tupdesc = ExecTypeFromTL(scan_tlist);
mysql_build_whole_row_constr_info(festate, tupleDescriptor,
fsplan->fs_relids,
list_length(node->ss.ps.state->es_range_table),
whole_row_lists, scan_tlist,
fsplan->fdw_scan_tlist);
/* Change tuple descriptor to match the result from foreign server. */
tupleDescriptor = scan_tupdesc;
}
/*
* Identify which user to do the remote access as. This should match what
* ExecCheckRTEPerms() does. In case of a join use the lowest-numbered
* member RTE as a representative; we would get the same result from any.
*/
if (fsplan->scan.scanrelid > 0)
rtindex = fsplan->scan.scanrelid;
else
#if PG_VERSION_NUM >= 160000
rtindex = bms_next_member(fsplan->fs_base_relids, -1);
#else
rtindex = bms_next_member(fsplan->fs_relids, -1);
#endif
#if PG_VERSION_NUM >= 160000
rte = exec_rt_fetch(rtindex, estate);
userid = fsplan->checkAsUser ? fsplan->checkAsUser : GetUserId();
#else
rte = rt_fetch(rtindex, estate->es_range_table);
userid = rte->checkAsUser ? rte->checkAsUser : GetUserId();
#endif
/* Get info about foreign table. */
table = GetForeignTable(rte->relid);
server = GetForeignServer(table->serverid);
user = GetUserMapping(userid, server->serverid);
/* Fetch the options */
options = mysql_get_options(rte->relid, true);
/*
* Get the already connected connection, otherwise connect and get the
* connection handle.
*/
conn = mysql_get_connection(server, user, options);
/* Stash away the state info we have already */
festate->query = strVal(list_nth(fsplan->fdw_private,
mysqlFdwScanPrivateSelectSql));
festate->retrieved_attrs = list_nth(fsplan->fdw_private,
mysqlFdwScanPrivateRetrievedAttrs);
festate->conn = conn;
festate->query_executed = false;
festate->has_var_size_col = false;
festate->attinmeta = TupleDescGetAttInMetadata(tupleDescriptor);
festate->temp_cxt = AllocSetContextCreate(estate->es_query_cxt,
"mysql_fdw temporary data",
ALLOCSET_DEFAULT_SIZES);
if (wait_timeout > 0)
{
/* Set the session timeout in seconds */
sprintf(timeout, "SET wait_timeout = %d", wait_timeout);
mysql_query(festate->conn, timeout);
}
if (interactive_timeout > 0)
{
/* Set the session timeout in seconds */
sprintf(timeout, "SET interactive_timeout = %d", interactive_timeout);
mysql_query(festate->conn, timeout);
}
snprintf(sql_mode, sizeof(sql_mode), "SET sql_mode = '%s'",
options->sql_mode);
if (mysql_query(festate->conn, sql_mode) != 0)
mysql_error_print(festate->conn);
/* Initialize the MySQL statement */
festate->stmt = mysql_stmt_init(festate->conn);
if (festate->stmt == NULL)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to initialize the mysql query: \n%s",
mysql_error(festate->conn))));
/* Prepare MySQL statement */
if (mysql_stmt_prepare(festate->stmt, festate->query,
strlen(festate->query)) != 0)
mysql_stmt_error_print(festate, "failed to prepare the MySQL query");
/* Prepare for output conversion of parameters used in remote query. */
numParams = list_length(fsplan->fdw_exprs);
festate->numParams = numParams;
if (numParams > 0)
prepare_query_params((PlanState *) node,
fsplan->fdw_exprs,
numParams,
&festate->param_flinfo,
&festate->param_exprs,
&festate->param_values,
&festate->param_types);
/* int column_count = mysql_num_fields(festate->meta); */
/* Set the statement as cursor type */
mysql_stmt_attr_set(festate->stmt, STMT_ATTR_CURSOR_TYPE, (void *) &type);
/* Set the pre-fetch rows */
mysql_stmt_attr_set(festate->stmt, STMT_ATTR_PREFETCH_ROWS,
(void *) &options->fetch_size);
festate->table = (mysql_table *) palloc0(sizeof(mysql_table));
festate->table->column = (mysql_column *) palloc0(sizeof(mysql_column) * tupleDescriptor->natts);
festate->table->mysql_bind = (MYSQL_BIND *) palloc0(sizeof(MYSQL_BIND) * tupleDescriptor->natts);
festate->table->mysql_res = mysql_stmt_result_metadata(festate->stmt);
if (NULL == festate->table->mysql_res)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to retrieve query result set metadata: \n%s",
mysql_error(festate->conn))));
festate->table->mysql_fields = mysql_fetch_fields(festate->table->mysql_res);
foreach(lc, festate->retrieved_attrs)
{
int attnum = lfirst_int(lc) - 1;
Oid pgtype = TupleDescAttr(tupleDescriptor, attnum)->atttypid;
int32 pgtypmod = TupleDescAttr(tupleDescriptor, attnum)->atttypmod;
if (TupleDescAttr(tupleDescriptor, attnum)->attisdropped)
continue;
if (pgtype == TEXTOID)
festate->has_var_size_col = true;
festate->table->column[atindex].mysql_bind = &festate->table->mysql_bind[atindex];
mysql_bind_result(pgtype, pgtypmod,
&festate->table->mysql_fields[atindex],
&festate->table->column[atindex]);
atindex++;
}
/*
* Set STMT_ATTR_UPDATE_MAX_LENGTH so that mysql_stmt_store_result() can
* update metadata MYSQL_FIELD->max_length value, this will be useful to
* determine var length column size.
*/
mysql_stmt_attr_set(festate->stmt, STMT_ATTR_UPDATE_MAX_LENGTH,
&festate->has_var_size_col);
/* Bind the results pointers for the prepare statements */
if (mysql_stmt_bind_result(festate->stmt, festate->table->mysql_bind) != 0)
mysql_stmt_error_print(festate, "failed to bind the MySQL query");
}
/*
* mysqlIterateForeignScan
* Iterate and get the rows one by one from MySQL and placed in tuple
* slot
*/
static TupleTableSlot *
mysqlIterateForeignScan(ForeignScanState *node)
{
MySQLFdwExecState *festate = (MySQLFdwExecState *) node->fdw_state;
TupleTableSlot *tupleSlot = node->ss.ss_ScanTupleSlot;
int attid;
ListCell *lc;
int rc = 0;
Datum *dvalues;
bool *nulls;
int natts;
AttInMetadata *attinmeta = festate->attinmeta;
HeapTuple tup;
int i;
ForeignScan *fsplan = (ForeignScan *) node->ss.ps.plan;
List *fdw_private = fsplan->fdw_private;
natts = attinmeta->tupdesc->natts;
dvalues = palloc0(natts * sizeof(Datum));
nulls = palloc(natts * sizeof(bool));
/* Initialize to nulls for any columns not present in result */
memset(nulls, true, natts * sizeof(bool));
ExecClearTuple(tupleSlot);
/*
* If this is the first call after Begin or ReScan, we need to bind the
* params and execute the query.
*/
if (!festate->query_executed)
bind_stmt_params_and_exec(node);
attid = 0;
rc = mysql_stmt_fetch(festate->stmt);
if (rc == 0)
{
foreach(lc, festate->retrieved_attrs)
{
int attnum = lfirst_int(lc) - 1;
Oid pgtype = TupleDescAttr(attinmeta->tupdesc, attnum)->atttypid;
int32 pgtypmod = TupleDescAttr(attinmeta->tupdesc, attnum)->atttypmod;
nulls[attnum] = festate->table->column[attid].is_null;
if (!festate->table->column[attid].is_null)
dvalues[attnum] = mysql_convert_to_pg(pgtype, pgtypmod,
&festate->table->column[attid]);
attid++;
}
ExecClearTuple(tupleSlot);
if (list_length(fdw_private) >= mysqlFdwPrivateScanTList)
{
/* Construct tuple with whole-row references. */
tup = mysql_get_tuple_with_whole_row(festate, dvalues, nulls);
}
else
{
/* Form the Tuple using Datums */
tup = heap_form_tuple(attinmeta->tupdesc, dvalues, nulls);
}
if (tup)
ExecStoreHeapTuple(tup, tupleSlot, false);
else
mysql_stmt_close(festate->stmt);
/*
* Release locally palloc'd space and values of pass-by-reference
* datums, as well.
*/
for (i = 0; i < natts; i++)
{
if (dvalues[i] && !TupleDescAttr(attinmeta->tupdesc, i)->attbyval)
pfree(DatumGetPointer(dvalues[i]));
}
pfree(dvalues);
pfree(nulls);
}
else if (rc == 1)
{
/*
* Error occurred. Error code and message can be obtained by calling
* mysql_stmt_errno() and mysql_stmt_error().
*/
}
else if (rc == MYSQL_NO_DATA)
{
/*
* No more rows/data exists
*/
}
else if (rc == MYSQL_DATA_TRUNCATED)
{
/* Data truncation occurred */
/*
* MYSQL_DATA_TRUNCATED is returned when truncation reporting is
* enabled. To determine which column values were truncated when this
* value is returned, check the error members of the MYSQL_BIND
* structures used for fetching values. Truncation reporting is
* enabled by default, but can be controlled by calling
* mysql_options() with the MYSQL_REPORT_DATA_TRUNCATION option.
*/
}
return tupleSlot;
}
/*
* mysqlExplainForeignScan
* Produce extra output for EXPLAIN
*/
static void
mysqlExplainForeignScan(ForeignScanState *node, ExplainState *es)
{
MySQLFdwExecState *festate = (MySQLFdwExecState *) node->fdw_state;
RangeTblEntry *rte;
ForeignScan *fsplan = (ForeignScan *) node->ss.ps.plan;
int rtindex;
EState *estate = node->ss.ps.state;
List *fdw_private = fsplan->fdw_private;
if (fsplan->scan.scanrelid > 0)
rtindex = fsplan->scan.scanrelid;
else
#if PG_VERSION_NUM >= 160000
rtindex = bms_next_member(fsplan->fs_base_relids, -1);
#else
rtindex = bms_next_member(fsplan->fs_relids, -1);
#endif
rte = rt_fetch(rtindex, estate->es_range_table);
if (list_length(fdw_private) > mysqlFdwScanPrivateRelations)
{
char *relations = strVal(list_nth(fdw_private,
mysqlFdwScanPrivateRelations));
ExplainPropertyText("Relations", relations, es);
}
/* Give some possibly useful info about startup costs */
if (es->costs)
{
mysql_opt *options = mysql_get_options(rte->relid, true);
if (strcmp(options->svr_address, "127.0.0.1") == 0 ||
strcmp(options->svr_address, "localhost") == 0)
ExplainPropertyInteger("Local server startup cost", NULL, 10, es);
else
ExplainPropertyInteger("Remote server startup cost", NULL, 25, es);
}
/* Show the remote query in verbose mode */
if (es->verbose)
ExplainPropertyText("Remote query", festate->query, es);
}
/*
* mysqlEndForeignScan
* Finish scanning foreign table and dispose objects used for this scan
*/
static void
mysqlEndForeignScan(ForeignScanState *node)
{
MySQLFdwExecState *festate = (MySQLFdwExecState *) node->fdw_state;
if (festate->table && festate->table->mysql_res)
{
mysql_free_result(festate->table->mysql_res);
festate->table->mysql_res = NULL;
}
if (festate->stmt)
{
mysql_stmt_close(festate->stmt);
festate->stmt = NULL;
}
}
/*
* mysqlReScanForeignScan
* Rescan table, possibly with new parameters
*/
static void
mysqlReScanForeignScan(ForeignScanState *node)
{
MySQLFdwExecState *festate = (MySQLFdwExecState *) node->fdw_state;
/*
* Set the query_executed flag to false so that the query will be executed
* in mysqlIterateForeignScan().
*/
festate->query_executed = false;
}
/*
* mysqlGetForeignRelSize
* Create a FdwPlan for a scan on the foreign table
*/
static void
mysqlGetForeignRelSize(PlannerInfo *root, RelOptInfo *baserel,
Oid foreigntableid)
{
double rows = 0;
double filtered = 0;
MYSQL *conn;
MYSQL_ROW row;
Bitmapset *attrs_used = NULL;
mysql_opt *options;
Oid userid = GetUserId();
ForeignServer *server;
UserMapping *user;
ForeignTable *table;
MySQLFdwRelationInfo *fpinfo;
ListCell *lc;
RangeTblEntry *rte = planner_rt_fetch(baserel->relid, root);
const char *database;
const char *relname;
const char *refname;
char sql_mode[255];
fpinfo = (MySQLFdwRelationInfo *) palloc0(sizeof(MySQLFdwRelationInfo));
baserel->fdw_private = (void *) fpinfo;
/* Base foreign tables need to be push down always. */
fpinfo->pushdown_safe = true;
table = GetForeignTable(foreigntableid);
server = GetForeignServer(table->serverid);
user = GetUserMapping(userid, server->serverid);
/* Fetch options */
options = mysql_get_options(foreigntableid, true);
/* Connect to the server */
conn = mysql_get_connection(server, user, options);
snprintf(sql_mode, sizeof(sql_mode), "SET sql_mode = '%s'",
options->sql_mode);
if (mysql_query(conn, sql_mode) != 0)
mysql_error_print(conn);
pull_varattnos((Node *) baserel->reltarget->exprs, baserel->relid,
&attrs_used);
foreach(lc, baserel->baserestrictinfo)
{
RestrictInfo *ri = (RestrictInfo *) lfirst(lc);
if (mysql_is_foreign_expr(root, baserel, ri->clause, false))
fpinfo->remote_conds = lappend(fpinfo->remote_conds, ri);
else
fpinfo->local_conds = lappend(fpinfo->local_conds, ri);
}
pull_varattnos((Node *) baserel->reltarget->exprs, baserel->relid,
&fpinfo->attrs_used);
foreach(lc, fpinfo->local_conds)
{
RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
pull_varattnos((Node *) rinfo->clause, baserel->relid,
&fpinfo->attrs_used);
}
if (options->use_remote_estimate)
{
StringInfoData sql;
MYSQL_RES *result = NULL;
List *retrieved_attrs = NULL;
initStringInfo(&sql);
appendStringInfo(&sql, "EXPLAIN ");
mysql_deparse_select_stmt_for_rel(&sql, root, baserel, NULL,
fpinfo->remote_conds, NULL, false,
false, &retrieved_attrs, NULL);
if (mysql_query(conn, sql.data) != 0)
mysql_error_print(conn);
result = mysql_store_result(conn);
if (result)
{
int num_fields;
/*
* MySQL provide numbers of rows per table invole in the
* statement, but we don't have problem with it because we are
* sending separate query per table in FDW.
*/
row = mysql_fetch_row(result);
num_fields = mysql_num_fields(result);
if (row)
{
MYSQL_FIELD *field;
int i;
for (i = 0; i < num_fields; i++)
{
field = mysql_fetch_field(result);
if (!row[i])
continue;
else if (strcmp(field->name, "rows") == 0)
rows = atof(row[i]);
else if (strcmp(field->name, "filtered") == 0)
filtered = atof(row[i]);
}
}
mysql_free_result(result);
}
}
if (rows > 0)
rows = ((rows + 1) * filtered) / 100;
else
rows = DEFAULTE_NUM_ROWS;
baserel->rows = rows;
baserel->tuples = rows;
/*
* Set the name of relation in fpinfo, while we are constructing it here.
* It will be used to build the string describing the join relation in
* EXPLAIN output. We can't know whether VERBOSE option is specified or
* not, so always schema-qualify the foreign table name.
*/
fpinfo->relation_name = makeStringInfo();
database = options->svr_database;
relname = get_rel_name(foreigntableid);
refname = rte->eref->aliasname;
appendStringInfo(fpinfo->relation_name, "%s.%s",
quote_identifier(database), quote_identifier(relname));
if (*refname && strcmp(refname, relname) != 0)
appendStringInfo(fpinfo->relation_name, " %s",
quote_identifier(rte->eref->aliasname));
}
static bool
mysql_is_column_unique(Oid foreigntableid)
{
StringInfoData sql;
MYSQL *conn;
MYSQL_RES *result;
mysql_opt *options;
Oid userid = GetUserId();
ForeignServer *server;
UserMapping *user;
ForeignTable *table;
table = GetForeignTable(foreigntableid);
server = GetForeignServer(table->serverid);
user = GetUserMapping(userid, server->serverid);
/* Fetch the options */
options = mysql_get_options(foreigntableid, true);
/* Connect to the server */
conn = mysql_get_connection(server, user, options);
/* Build the query */
initStringInfo(&sql);
/*
* Construct the query by prefixing the database name so that it can
* lookup in correct database.
*/
appendStringInfo(&sql, "EXPLAIN %s.%s",
mysql_quote_identifier(options->svr_database, '`'),
mysql_quote_identifier(options->svr_table, '`'));
if (mysql_query(conn, sql.data) != 0)
mysql_error_print(conn);
result = mysql_store_result(conn);
if (result)
{
int num_fields = mysql_num_fields(result);
MYSQL_ROW row;
row = mysql_fetch_row(result);
if (row && num_fields > 3)
{
if ((strcmp(row[3], "PRI") == 0) || (strcmp(row[3], "UNI")) == 0)
{
mysql_free_result(result);
return true;
}
}
mysql_free_result(result);
}
return false;
}
/*
* mysqlEstimateCosts
* Estimate the remote query cost
*/
static void
mysqlEstimateCosts(PlannerInfo *root, RelOptInfo *baserel, Cost *startup_cost,
Cost *total_cost, Oid foreigntableid)
{
mysql_opt *options;
/* Fetch options */
options = mysql_get_options(foreigntableid, true);
/* Local databases are probably faster */
if (strcmp(options->svr_address, "127.0.0.1") == 0 ||
strcmp(options->svr_address, "localhost") == 0)
*startup_cost = 10;
else
*startup_cost = 25;
*total_cost = baserel->rows + *startup_cost;
}
/*
* mysqlGetForeignPaths
* Get the foreign paths
*/
static void
mysqlGetForeignPaths(PlannerInfo *root, RelOptInfo *baserel,
Oid foreigntableid)
{
Cost startup_cost;
Cost total_cost;
/* Estimate costs */
mysqlEstimateCosts(root, baserel, &startup_cost, &total_cost,
foreigntableid);
/* Create a ForeignPath node and add it as only possible path */
#if PG_VERSION_NUM >= 170000
add_path(baserel, (Path *)
create_foreignscan_path(root, baserel,
NULL, /* default pathtarget */
baserel->rows,
startup_cost,
total_cost,
NIL, /* no pathkeys */
baserel->lateral_relids,
NULL, /* no extra plan */
NIL, /* no fdw_restrictinfo list */
NIL)); /* no fdw_private data */
#else
add_path(baserel, (Path *)
create_foreignscan_path(root, baserel,
NULL, /* default pathtarget */
baserel->rows,
startup_cost,
total_cost,
NIL, /* no pathkeys */
baserel->lateral_relids,
NULL, /* no extra plan */
NIL)); /* no fdw_private list */
#endif
/* Add paths with pathkeys */
#if PG_VERSION_NUM >= 170000
mysql_add_paths_with_pathkeys(root, baserel, NULL, startup_cost,
total_cost, NIL);
#else
mysql_add_paths_with_pathkeys(root, baserel, NULL, startup_cost,
total_cost);
#endif
}
/*
* mysqlGetForeignPlan
* Get a foreign scan plan node
*/
static ForeignScan *
mysqlGetForeignPlan(PlannerInfo *root, RelOptInfo *foreignrel,
Oid foreigntableid, ForeignPath *best_path,
List *tlist, List *scan_clauses, Plan *outer_plan)
{
MySQLFdwRelationInfo *fpinfo = (MySQLFdwRelationInfo *) foreignrel->fdw_private;
Index scan_relid;
List *fdw_private;
List *local_exprs = NIL;
List *params_list = NIL;
List *remote_conds = NIL;
StringInfoData sql;
List *retrieved_attrs;
ListCell *lc;
List *scan_var_list;
List *fdw_scan_tlist = NIL;
List *whole_row_lists = NIL;
bool has_final_sort = false;
bool has_limit = false;
/*
* Get FDW private data created by mysqlGetForeignUpperPaths(), if any.
*/
if (best_path->fdw_private)
{
has_final_sort = intVal(list_nth(best_path->fdw_private,
FdwPathPrivateHasFinalSort));
has_limit = intVal(list_nth(best_path->fdw_private,
FdwPathPrivateHasLimit));
}
if (foreignrel->reloptkind == RELOPT_BASEREL ||
foreignrel->reloptkind == RELOPT_OTHER_MEMBER_REL)
scan_relid = foreignrel->relid;
else
{
scan_relid = 0;
Assert(!scan_clauses);
remote_conds = fpinfo->remote_conds;
local_exprs = extract_actual_clauses(fpinfo->local_conds, false);
}
/*
* Separate the scan_clauses into those that can be executed remotely and
* those that can't. baserestrictinfo clauses that were previously
* determined to be safe or unsafe are shown in fpinfo->remote_conds and
* fpinfo->local_conds. Anything else in the scan_clauses list will be a
* join clause, which we have to check for remote-safety.
*
* This code must match "extract_actual_clauses(scan_clauses, false)"
* except for the additional decision about remote versus local execution.
* Note however that we only strip the RestrictInfo nodes from the
* local_exprs list, since appendWhereClause expects a list of
* RestrictInfos.
*/
foreach(lc, scan_clauses)
{
RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
Assert(IsA(rinfo, RestrictInfo));
/* Ignore any pseudoconstants, they're dealt with elsewhere */
if (rinfo->pseudoconstant)
continue;
if (list_member_ptr(fpinfo->remote_conds, rinfo))
remote_conds = lappend(remote_conds, rinfo);
else if (list_member_ptr(fpinfo->local_conds, rinfo))
local_exprs = lappend(local_exprs, rinfo->clause);
else if (mysql_is_foreign_expr(root, foreignrel, rinfo->clause, false))
remote_conds = lappend(remote_conds, rinfo);
else
local_exprs = lappend(local_exprs, rinfo->clause);
}
if (IS_UPPER_REL(foreignrel))
scan_var_list = pull_var_clause((Node *) fpinfo->grouped_tlist,
PVC_RECURSE_AGGREGATES);
else
scan_var_list = pull_var_clause((Node *) foreignrel->reltarget->exprs,
PVC_RECURSE_PLACEHOLDERS);
/* System attributes are not allowed. */
foreach(lc, scan_var_list)
{
Var *var = lfirst(lc);
const FormData_pg_attribute *attr;
Assert(IsA(var, Var));
if (var->varattno >= 0)
continue;
attr = SystemAttributeDefinition(var->varattno);
ereport(ERROR,
(errcode(ERRCODE_FDW_COLUMN_NAME_NOT_FOUND),
errmsg("system attribute \"%s\" can't be fetched from remote relation",
attr->attname.data)));
}
if (IS_JOIN_REL(foreignrel))
{
scan_var_list = list_concat_unique(NIL, scan_var_list);
scan_var_list = list_concat_unique(scan_var_list,
pull_var_clause((Node *) local_exprs,
PVC_RECURSE_PLACEHOLDERS));
/*
* For join relations, planner needs targetlist, which represents the
* output of ForeignScan node. Prepare this before we modify
* scan_var_list to include Vars required by whole row references, if
* any. Note that base foreign scan constructs the whole-row
* reference at the time of projection. Joins are required to get
* them from the underlying base relations. For a pushed down join
* the underlying relations do not exist, hence the whole-row
* references need to be constructed separately.
*/
fdw_scan_tlist = add_to_flat_tlist(NIL, scan_var_list);
/*
* MySQL does not allow row value constructors to be part of SELECT
* list. Hence, whole row reference in join relations need to be
* constructed by combining all the attributes of required base
* relations into a tuple after fetching the result from the foreign
* server. So adjust the targetlist to include all attributes for
* required base relations. The function also returns list of Var
* node lists required to construct the whole-row references of the
* involved relations.
*/
scan_var_list = mysql_adjust_whole_row_ref(root, scan_var_list,
&whole_row_lists,
foreignrel->relids);
if (outer_plan)
{
/*
* Right now, we only consider grouping and aggregation beyond
* joins. Queries involving aggregates or grouping do not require
* EPQ mechanism, hence should not have an outer plan here.
*/
Assert(!IS_UPPER_REL(foreignrel));
foreach(lc, local_exprs)
{
Node *qual = lfirst(lc);
outer_plan->qual = list_delete(outer_plan->qual, qual);
/*
* For an inner join the local conditions of foreign scan plan
* can be part of the joinquals as well. (They might also be
* in the mergequals or hashquals, but we can't touch those
* without breaking the plan.)
*/
if (IsA(outer_plan, NestLoop) ||
IsA(outer_plan, MergeJoin) ||
IsA(outer_plan, HashJoin))
{
Join *join_plan = (Join *) outer_plan;
if (join_plan->jointype == JOIN_INNER)
join_plan->joinqual = list_delete(join_plan->joinqual,
qual);
}
}
}
}
else if (IS_UPPER_REL(foreignrel))
{
/*
* scan_var_list should have expressions and not TargetEntry nodes.
* However grouped_tlist created has TLEs, thus retrieve them into
* scan_var_list.
*/
scan_var_list = list_concat_unique(NIL,
get_tlist_exprs(fpinfo->grouped_tlist,
false));
/*
* The targetlist computed while assessing push-down safety represents
* the result we expect from the foreign server.
*/
fdw_scan_tlist = fpinfo->grouped_tlist;
local_exprs = extract_actual_clauses(fpinfo->local_conds, false);
}
/*
* Build the query string to be sent for execution, and identify
* expressions to be sent as parameters.
*/
initStringInfo(&sql);
mysql_deparse_select_stmt_for_rel(&sql, root, foreignrel, scan_var_list,
remote_conds, best_path->path.pathkeys,
has_final_sort, has_limit, &retrieved_attrs,
¶ms_list);
#if PG_VERSION_NUM >= 140000
if (bms_is_member(foreignrel->relid, root->all_result_relids) &&
#else
if (foreignrel->relid == root->parse->resultRelation &&
#endif
(root->parse->commandType == CMD_UPDATE ||
root->parse->commandType == CMD_DELETE))
{
/* Relation is UPDATE/DELETE target, so use FOR UPDATE */
appendStringInfoString(&sql, " FOR UPDATE");
}
/*
* Build the fdw_private list that will be available to the executor.
* Items in the list must match enum FdwScanPrivateIndex, above.
*/
fdw_private = list_make2(makeString(sql.data), retrieved_attrs);
if (IS_JOIN_REL(foreignrel) || IS_UPPER_REL(foreignrel))
{
fdw_private = lappend(fdw_private,
makeString(fpinfo->relation_name->data));
/*
* To construct whole row references we need:
*
* 1. The lists of Var nodes required for whole-row references of
* joining relations
* 2. targetlist corresponding the result expected from the foreign
* server.
*/
if (whole_row_lists)
{
fdw_private = lappend(fdw_private, whole_row_lists);
fdw_private = lappend(fdw_private,
add_to_flat_tlist(NIL, scan_var_list));
}
}
/*
* Create the ForeignScan node from target list, local filtering
* expressions, remote parameter expressions, and FDW private information.
*
* Note that the remote parameter expressions are stored in the fdw_exprs
* field of the finished plan node; we can't keep them in private state
* because then they wouldn't be subject to later planner processing.
*/
return make_foreignscan(tlist, local_exprs, scan_relid, params_list,
fdw_private, fdw_scan_tlist, NIL, outer_plan);
}
/*
* mysqlAnalyzeForeignTable
* Implement stats collection
*/
static bool
mysqlAnalyzeForeignTable(Relation relation, AcquireSampleRowsFunc *func,
BlockNumber *totalpages)
{
StringInfoData sql;
double table_size = 0;
MYSQL *conn;
MYSQL_RES *result;
Oid foreignTableId = RelationGetRelid(relation);
mysql_opt *options;
ForeignServer *server;
UserMapping *user;
ForeignTable *table;
table = GetForeignTable(foreignTableId);
server = GetForeignServer(table->serverid);
user = GetUserMapping(relation->rd_rel->relowner, server->serverid);
/* Fetch options */
options = mysql_get_options(foreignTableId, true);
Assert(options->svr_database != NULL && options->svr_table != NULL);
/* Connect to the server */
conn = mysql_get_connection(server, user, options);
/* Build the query */
initStringInfo(&sql);
mysql_deparse_analyze(&sql, options->svr_database, options->svr_table);
if (mysql_query(conn, sql.data) != 0)
mysql_error_print(conn);
result = mysql_store_result(conn);
/*
* To get the table size in ANALYZE operation, we run a SELECT query by
* passing the database name and table name. So if the remote table is
* not present, then we end up getting zero rows. Throw an error in that
* case.
*/
if (mysql_num_rows(result) == 0)
ereport(ERROR,
(errcode(ERRCODE_FDW_TABLE_NOT_FOUND),
errmsg("relation %s.%s does not exist", options->svr_database,
options->svr_table)));
if (result)
{
MYSQL_ROW row;
row = mysql_fetch_row(result);
table_size = atof(row[0]);
mysql_free_result(result);
}
*totalpages = table_size / MYSQL_BLKSIZ;
return false;
}
static List *
mysqlPlanForeignModify(PlannerInfo *root,
ModifyTable *plan,
Index resultRelation,
int subplan_index)
{
CmdType operation = plan->operation;
RangeTblEntry *rte = planner_rt_fetch(resultRelation, root);
Relation rel;
List *targetAttrs = NIL;
StringInfoData sql;
char *attname;
Oid foreignTableId;
bool doNothing = false;
initStringInfo(&sql);
/*
* Core code already has some lock on each rel being planned, so we can
* use NoLock here.
*/
#if PG_VERSION_NUM < 130000
rel = heap_open(rte->relid, NoLock);
#else
rel = table_open(rte->relid, NoLock);
#endif
foreignTableId = RelationGetRelid(rel);
if (!mysql_is_column_unique(foreignTableId))
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("first column of remote table must be unique for INSERT/UPDATE/DELETE operation")));
/*
* ON CONFLICT DO UPDATE and DO NOTHING case with inference specification
* should have already been rejected in the optimizer, as presently there
* is no way to recognize an arbiter index on a foreign table. Only DO
* NOTHING is supported without an inference specification.
*/
if (plan->onConflictAction == ONCONFLICT_NOTHING)
doNothing = true;
else if (plan->onConflictAction != ONCONFLICT_NONE)
elog(ERROR, "unexpected ON CONFLICT specification: %d",
(int) plan->onConflictAction);
/*
* In an INSERT, we transmit all columns that are defined in the foreign
* table. In an UPDATE, if there are BEFORE ROW UPDATE triggers on the
* foreign table, we transmit all columns like INSERT; else we transmit
* only columns that were explicitly targets of the UPDATE, so as to avoid
* unnecessary data transmission. (We can't do that for INSERT since we
* would miss sending default values for columns not listed in the source
* statement, and for UPDATE if there are BEFORE ROW UPDATE triggers since
* those triggers might change values for non-target columns, in which
* case we would miss sending changed values for those columns.)
*/
if (operation == CMD_INSERT ||
(operation == CMD_UPDATE &&
rel->trigdesc &&
rel->trigdesc->trig_update_before_row))
{
TupleDesc tupdesc = RelationGetDescr(rel);
int attnum;
/*
* If it is an UPDATE operation, check for row identifier column in
* target attribute list by calling getUpdateTargetAttrs().
*/
if (operation == CMD_UPDATE)
getUpdateTargetAttrs(root, rte);
for (attnum = 1; attnum <= tupdesc->natts; attnum++)
{
Form_pg_attribute attr = TupleDescAttr(tupdesc, attnum - 1);
if (!attr->attisdropped)
targetAttrs = lappend_int(targetAttrs, attnum);
}
}
else if (operation == CMD_UPDATE)
{
targetAttrs = getUpdateTargetAttrs(root, rte);
/* We also want the rowid column to be available for the update */
targetAttrs = lcons_int(1, targetAttrs);
}
else
targetAttrs = lcons_int(1, targetAttrs);
attname = get_attname(foreignTableId, 1, false);
/*
* Construct the SQL command string.
*/
switch (operation)
{
case CMD_INSERT:
mysql_deparse_insert(&sql, root, resultRelation, rel, targetAttrs,
doNothing);
break;
case CMD_UPDATE:
mysql_deparse_update(&sql, root, resultRelation, rel, targetAttrs,
attname);
break;
case CMD_DELETE:
mysql_deparse_delete(&sql, root, resultRelation, rel, attname);
break;
default:
elog(ERROR, "unexpected operation: %d", (int) operation);
break;
}
if (plan->returningLists)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("RETURNING is not supported by this FDW")));
#if PG_VERSION_NUM < 130000
heap_close(rel, NoLock);
#else
table_close(rel, NoLock);
#endif
return list_make2(makeString(sql.data), targetAttrs);
}
/*
* mysqlBeginForeignModify
* Begin an insert/update/delete operation on a foreign table
*/
static void
mysqlBeginForeignModify(ModifyTableState *mtstate,
ResultRelInfo *resultRelInfo,
List *fdw_private,
int subplan_index,
int eflags)
{
MySQLFdwExecState *fmstate;
EState *estate = mtstate->ps.state;
Relation rel = resultRelInfo->ri_RelationDesc;
AttrNumber n_params;
Oid typefnoid = InvalidOid;
bool isvarlena = false;
ListCell *lc;
Oid foreignTableId = InvalidOid;
Oid userid;
ForeignServer *server;
UserMapping *user;
ForeignTable *table;
#if PG_VERSION_NUM >= 160000
ForeignScan *fsplan = (ForeignScan *) mtstate->ps.plan;
#else
RangeTblEntry *rte;
#endif
#if PG_VERSION_NUM >= 160000
userid = fsplan->checkAsUser ? fsplan->checkAsUser : GetUserId();
#else
rte = rt_fetch(resultRelInfo->ri_RangeTableIndex, estate->es_range_table);
userid = rte->checkAsUser ? rte->checkAsUser : GetUserId();
#endif
foreignTableId = RelationGetRelid(rel);
table = GetForeignTable(foreignTableId);
server = GetForeignServer(table->serverid);
user = GetUserMapping(userid, server->serverid);
/*
* Do nothing in EXPLAIN (no ANALYZE) case. resultRelInfo->ri_FdwState
* stays NULL.
*/
if (eflags & EXEC_FLAG_EXPLAIN_ONLY)
return;
/* Begin constructing MySQLFdwExecState. */
fmstate = (MySQLFdwExecState *) palloc0(sizeof(MySQLFdwExecState));
fmstate->mysqlFdwOptions = mysql_get_options(foreignTableId, true);
fmstate->conn = mysql_get_connection(server, user,
fmstate->mysqlFdwOptions);
fmstate->query = strVal(list_nth(fdw_private, 0));
fmstate->retrieved_attrs = (List *) list_nth(fdw_private, 1);
n_params = list_length(fmstate->retrieved_attrs) + 1;
fmstate->p_flinfo = (FmgrInfo *) palloc0(sizeof(FmgrInfo) * n_params);
fmstate->p_nums = 0;
fmstate->temp_cxt = AllocSetContextCreate(estate->es_query_cxt,
"mysql_fdw temporary data",
ALLOCSET_DEFAULT_SIZES);
/*
* Set the session timezone to UTC on MySQL, as we are converting timestamp
* values to UTC while doing DML operations.
*/
if (mysql_query(fmstate->conn, "SET session time_zone = '+00:00'") != 0)
mysql_error_print(fmstate->conn);
if (mtstate->operation == CMD_UPDATE)
{
Form_pg_attribute attr;
#if PG_VERSION_NUM >= 140000
Plan *subplan = outerPlanState(mtstate)->plan;
#else
Plan *subplan = mtstate->mt_plans[subplan_index]->plan;
#endif
Assert(subplan != NULL);
attr = TupleDescAttr(RelationGetDescr(rel), 0);
/* Find the rowid resjunk column in the subplan's result */
fmstate->rowidAttno = ExecFindJunkAttributeInTlist(subplan->targetlist,
NameStr(attr->attname));
if (!AttributeNumberIsValid(fmstate->rowidAttno))
elog(ERROR, "could not find junk row identifier column");
}
/* Set up for remaining transmittable parameters */
foreach(lc, fmstate->retrieved_attrs)
{
int attnum = lfirst_int(lc);
Form_pg_attribute attr = TupleDescAttr(RelationGetDescr(rel),
attnum - 1);
Assert(!attr->attisdropped);
getTypeOutputInfo(attr->atttypid, &typefnoid, &isvarlena);
fmgr_info(typefnoid, &fmstate->p_flinfo[fmstate->p_nums]);
fmstate->p_nums++;
}
Assert(fmstate->p_nums <= n_params);
n_params = list_length(fmstate->retrieved_attrs);
/* Initialize mysql statment */
fmstate->stmt = mysql_stmt_init(fmstate->conn);
if (!fmstate->stmt)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to initialize the MySQL query: \n%s",
mysql_error(fmstate->conn))));
/* Prepare mysql statment */
if (mysql_stmt_prepare(fmstate->stmt, fmstate->query,
strlen(fmstate->query)) != 0)
mysql_stmt_error_print(fmstate, "failed to prepare the MySQL query");
resultRelInfo->ri_FdwState = fmstate;
}
/*
* mysqlExecForeignInsert
* Insert one row into a foreign table
*/
static TupleTableSlot *
mysqlExecForeignInsert(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
MySQLFdwExecState *fmstate;
MYSQL_BIND *mysql_bind_buffer;
ListCell *lc;
int n_params;
MemoryContext oldcontext;
bool *isnull;
char sql_mode[255];
Oid foreignTableId = RelationGetRelid(resultRelInfo->ri_RelationDesc);
fmstate = (MySQLFdwExecState *) resultRelInfo->ri_FdwState;
n_params = list_length(fmstate->retrieved_attrs);
fmstate->mysqlFdwOptions = mysql_get_options(foreignTableId, true);
oldcontext = MemoryContextSwitchTo(fmstate->temp_cxt);
mysql_bind_buffer = (MYSQL_BIND *) palloc0(sizeof(MYSQL_BIND) * n_params);
isnull = (bool *) palloc0(sizeof(bool) * n_params);
snprintf(sql_mode, sizeof(sql_mode), "SET sql_mode = '%s'",
fmstate->mysqlFdwOptions->sql_mode);
if (mysql_query(fmstate->conn, sql_mode) != 0)
mysql_error_print(fmstate->conn);
foreach(lc, fmstate->retrieved_attrs)
{
int attnum = lfirst_int(lc) - 1;
Oid type = TupleDescAttr(slot->tts_tupleDescriptor, attnum)->atttypid;
Datum value;
value = slot_getattr(slot, attnum + 1, &isnull[attnum]);
mysql_bind_sql_var(type, attnum, value, mysql_bind_buffer,
&isnull[attnum]);
}
/* Bind values */
if (mysql_stmt_bind_param(fmstate->stmt, mysql_bind_buffer) != 0)
mysql_stmt_error_print(fmstate, "failed to bind the MySQL query");
/* Execute the query */
if (mysql_stmt_execute(fmstate->stmt) != 0)
mysql_stmt_error_print(fmstate, "failed to execute the MySQL query");
MemoryContextSwitchTo(oldcontext);
MemoryContextReset(fmstate->temp_cxt);
return slot;
}
static TupleTableSlot *
mysqlExecForeignUpdate(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
MySQLFdwExecState *fmstate = (MySQLFdwExecState *) resultRelInfo->ri_FdwState;
Relation rel = resultRelInfo->ri_RelationDesc;
MYSQL_BIND *mysql_bind_buffer;
Oid foreignTableId = RelationGetRelid(rel);
bool is_null = false;
ListCell *lc;
int bindnum = 0;
Oid typeoid;
Datum value;
int n_params;
bool *isnull;
Datum new_value;
HeapTuple tuple;
Form_pg_attribute attr;
bool found_row_id_col = false;
#if PG_VERSION_NUM >= 140000
TupleDesc tupdesc = RelationGetDescr(rel);
#endif
n_params = list_length(fmstate->retrieved_attrs);
mysql_bind_buffer = (MYSQL_BIND *) palloc0(sizeof(MYSQL_BIND) * n_params);
isnull = (bool *) palloc0(sizeof(bool) * n_params);
/* Bind the values */
foreach(lc, fmstate->retrieved_attrs)
{
int attnum = lfirst_int(lc);
Oid type;
/*
* The first attribute cannot be in the target list attribute. Set
* the found_row_id_col to true once we find it so that we can fetch
* the value later.
*/
if (attnum == 1)
{
found_row_id_col = true;
continue;
}
#if PG_VERSION_NUM >= 140000
/* Ignore generated columns; they are set to DEFAULT. */
if (TupleDescAttr(tupdesc, attnum - 1)->attgenerated)
continue;
#endif
type = TupleDescAttr(slot->tts_tupleDescriptor, attnum - 1)->atttypid;
value = slot_getattr(slot, attnum, (bool *) (&isnull[bindnum]));
mysql_bind_sql_var(type, bindnum, value, mysql_bind_buffer,
&isnull[bindnum]);
bindnum++;
}
/*
* Since we add a row identifier column in the target list always, so
* found_row_id_col flag should be true.
*/
if (!found_row_id_col)
elog(ERROR, "missing row identifier column value in UPDATE");
new_value = slot_getattr(slot, 1, &is_null);
/*
* Get the row identifier column value that was passed up as a resjunk
* column and compare that value with the new value to identify if that
* value is changed.
*/
value = ExecGetJunkAttribute(planSlot, fmstate->rowidAttno, &is_null);
tuple = SearchSysCache2(ATTNUM,
ObjectIdGetDatum(foreignTableId),
Int16GetDatum(1));
if (!HeapTupleIsValid(tuple))
elog(ERROR, "cache lookup failed for attribute %d of relation %u",
1, foreignTableId);
attr = (Form_pg_attribute) GETSTRUCT(tuple);
typeoid = attr->atttypid;
if (DatumGetPointer(new_value) != NULL && DatumGetPointer(value) != NULL)
{
Datum n_value = new_value;
Datum o_value = value;
/* If the attribute type is varlena then need to detoast the datums. */
if (attr->attlen == -1)
{
n_value = PointerGetDatum(PG_DETOAST_DATUM(new_value));
o_value = PointerGetDatum(PG_DETOAST_DATUM(value));
}
if (!datumIsEqual(o_value, n_value, attr->attbyval, attr->attlen))
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("row identifier column update is not supported")));
/* Free memory if it's a copy made above */
if (DatumGetPointer(n_value) != DatumGetPointer(new_value))
pfree(DatumGetPointer(n_value));
if (DatumGetPointer(o_value) != DatumGetPointer(value))
pfree(DatumGetPointer(o_value));
}
else if (!(DatumGetPointer(new_value) == NULL &&
DatumGetPointer(value) == NULL))
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("row identifier column update is not supported")));
ReleaseSysCache(tuple);
/* Bind qual */
mysql_bind_sql_var(typeoid, bindnum, value, mysql_bind_buffer, &is_null);
if (mysql_stmt_bind_param(fmstate->stmt, mysql_bind_buffer) != 0)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to bind the MySQL query: %s",
mysql_error(fmstate->conn))));
/* Execute the query */
if (mysql_stmt_execute(fmstate->stmt) != 0)
mysql_stmt_error_print(fmstate, "failed to execute the MySQL query");
/* Return NULL if nothing was updated on the remote end */
return slot;
}
/*
* mysqlAddForeignUpdateTargets
* Add column(s) needed for update/delete on a foreign table, we are
* using first column as row identification column, so we are adding
* that into target list.
*/
#if PG_VERSION_NUM >= 140000
static void
mysqlAddForeignUpdateTargets(PlannerInfo *root,
Index rtindex,
RangeTblEntry *target_rte,
Relation target_relation)
#else
static void
mysqlAddForeignUpdateTargets(Query *parsetree,
RangeTblEntry *target_rte,
Relation target_relation)
#endif
{
Var *var;
const char *attrname;
#if PG_VERSION_NUM < 140000
TargetEntry *tle;
#endif
/*
* What we need is the rowid which is the first column
*/
Form_pg_attribute attr =
TupleDescAttr(RelationGetDescr(target_relation), 0);
/* Make a Var representing the desired value */
#if PG_VERSION_NUM >= 140000
var = makeVar(rtindex,
#else
var = makeVar(parsetree->resultRelation,
#endif
1,
attr->atttypid,
attr->atttypmod,
InvalidOid,
0);
/* Get name of the row identifier column */
attrname = NameStr(attr->attname);
#if PG_VERSION_NUM >= 140000
/* Register it as a row-identity column needed by this target rel */
add_row_identity_var(root, var, rtindex, attrname);
#else
/* Wrap it in a TLE with the right name ... */
tle = makeTargetEntry((Expr *) var,
list_length(parsetree->targetList) + 1,
pstrdup(attrname), true);
/* ... and add it to the query's targetlist */
parsetree->targetList = lappend(parsetree->targetList, tle);
#endif
}
/*
* mysqlExecForeignDelete
* Delete one row from a foreign table
*/
static TupleTableSlot *
mysqlExecForeignDelete(EState *estate,
ResultRelInfo *resultRelInfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
MySQLFdwExecState *fmstate = (MySQLFdwExecState *) resultRelInfo->ri_FdwState;
Relation rel = resultRelInfo->ri_RelationDesc;
MYSQL_BIND *mysql_bind_buffer;
Oid foreignTableId = RelationGetRelid(rel);
bool is_null = false;
Oid typeoid;
Datum value;
mysql_bind_buffer = (MYSQL_BIND *) palloc(sizeof(MYSQL_BIND));
/* Get the id that was passed up as a resjunk column */
value = ExecGetJunkAttribute(planSlot, 1, &is_null);
typeoid = get_atttype(foreignTableId, 1);
/* Bind qual */
mysql_bind_sql_var(typeoid, 0, value, mysql_bind_buffer, &is_null);
if (mysql_stmt_bind_param(fmstate->stmt, mysql_bind_buffer) != 0)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to execute the MySQL query: %s",
mysql_error(fmstate->conn))));
/* Execute the query */
if (mysql_stmt_execute(fmstate->stmt) != 0)
mysql_stmt_error_print(fmstate, "failed to execute the MySQL query");
/* Return NULL if nothing was updated on the remote end */
return slot;
}
/*
* mysqlEndForeignModify
* Finish an insert/update/delete operation on a foreign table
*/
static void
mysqlEndForeignModify(EState *estate, ResultRelInfo *resultRelInfo)
{
MySQLFdwExecState *festate = resultRelInfo->ri_FdwState;
if (festate && festate->stmt)
{
mysql_stmt_close(festate->stmt);
festate->stmt = NULL;
}
}
/*
* mysqlImportForeignSchema
* Import a foreign schema (9.5+)
*/
static List *
mysqlImportForeignSchema(ImportForeignSchemaStmt *stmt, Oid serverOid)
{
List *commands = NIL;
bool import_default = false;
bool import_not_null = true;
bool import_enum_as_text = false;
ForeignServer *server;
UserMapping *user;
mysql_opt *options;
MYSQL *conn;
StringInfoData buf;
MYSQL_RES *volatile res = NULL;
MYSQL_ROW row;
ListCell *lc;
#if PG_VERSION_NUM >= 140000
bool import_generated = true;
#endif
/* Parse statement options */
foreach(lc, stmt->options)
{
DefElem *def = (DefElem *) lfirst(lc);
if (strcmp(def->defname, "import_default") == 0)
import_default = defGetBoolean(def);
else if (strcmp(def->defname, "import_not_null") == 0)
import_not_null = defGetBoolean(def);
else if (strcmp(def->defname, "import_enum_as_text") == 0)
import_enum_as_text = defGetBoolean(def);
#if PG_VERSION_NUM >= 140000
else if (strcmp(def->defname, "import_generated") == 0)
import_generated = defGetBoolean(def);
#endif
else
ereport(ERROR,
(errcode(ERRCODE_FDW_INVALID_OPTION_NAME),
errmsg("invalid option \"%s\"", def->defname)));
}
/*
* Get connection to the foreign server. Connection manager will
* establish new connection if necessary.
*/
server = GetForeignServer(serverOid);
user = GetUserMapping(GetUserId(), server->serverid);
options = mysql_get_options(serverOid, false);
conn = mysql_get_connection(server, user, options);
/* Create workspace for strings */
initStringInfo(&buf);
/* Check that the schema really exists */
appendStringInfo(&buf,
"SELECT 1 FROM information_schema.TABLES WHERE TABLE_SCHEMA = '%s'",
stmt->remote_schema);
if (mysql_query(conn, buf.data) != 0)
mysql_error_print(conn);
res = mysql_store_result(conn);
if (!res || mysql_num_rows(res) < 1)
ereport(ERROR,
(errcode(ERRCODE_FDW_SCHEMA_NOT_FOUND),
errmsg("schema \"%s\" is not present on foreign server \"%s\"",
stmt->remote_schema, server->servername)));
mysql_free_result(res);
res = NULL;
resetStringInfo(&buf);
/*
* Fetch all table data from this schema, possibly restricted by EXCEPT or
* LIMIT TO.
*/
appendStringInfo(&buf,
" SELECT"
" t.TABLE_NAME,"
" c.COLUMN_NAME,"
" CASE"
" WHEN c.DATA_TYPE = 'enum' THEN LOWER(CONCAT(t.TABLE_NAME, '_', c.COLUMN_NAME, '_t'))"
" WHEN c.DATA_TYPE = 'tinyint' THEN 'smallint'"
" WHEN c.DATA_TYPE = 'mediumint' THEN 'integer'"
" WHEN c.DATA_TYPE = 'tinyint unsigned' THEN 'smallint'"
" WHEN c.DATA_TYPE = 'smallint unsigned' THEN 'integer'"
" WHEN c.DATA_TYPE = 'mediumint unsigned' THEN 'integer'"
" WHEN c.DATA_TYPE = 'int unsigned' THEN 'bigint'"
" WHEN c.DATA_TYPE = 'bigint unsigned' THEN 'numeric(20)'"
" WHEN c.DATA_TYPE = 'double' THEN 'double precision'"
" WHEN c.DATA_TYPE = 'float' THEN 'real'"
" WHEN c.DATA_TYPE = 'datetime' THEN 'timestamp'"
" WHEN c.DATA_TYPE = 'longtext' THEN 'text'"
" WHEN c.DATA_TYPE = 'mediumtext' THEN 'text'"
" WHEN c.DATA_TYPE = 'tinytext' THEN 'text'"
" WHEN c.DATA_TYPE = 'blob' THEN 'bytea'"
" WHEN c.DATA_TYPE = 'mediumblob' THEN 'bytea'"
" WHEN c.DATA_TYPE = 'longblob' THEN 'bytea'"
" WHEN c.DATA_TYPE = 'binary' THEN 'bytea'"
" WHEN c.DATA_TYPE = 'varbinary' THEN 'bytea'"
" WHEN c.DATA_TYPE = 'timestamp' THEN 'timestamptz'"
" ELSE c.DATA_TYPE"
" END,"
" c.COLUMN_TYPE,"
" IF(c.IS_NULLABLE = 'NO', 't', 'f'),"
#if PG_VERSION_NUM >= 140000
" c.COLUMN_DEFAULT,"
" c.EXTRA,"
" c.GENERATION_EXPRESSION"
#else
" c.COLUMN_DEFAULT"
#endif
" FROM"
" information_schema.TABLES AS t"
" JOIN"
" information_schema.COLUMNS AS c"
" ON"
" t.TABLE_CATALOG <=> c.TABLE_CATALOG AND t.TABLE_SCHEMA <=> c.TABLE_SCHEMA AND t.TABLE_NAME <=> c.TABLE_NAME"
" WHERE"
" t.TABLE_SCHEMA = '%s'",
stmt->remote_schema);
/* Apply restrictions for LIMIT TO and EXCEPT */
if (stmt->list_type == FDW_IMPORT_SCHEMA_LIMIT_TO ||
stmt->list_type == FDW_IMPORT_SCHEMA_EXCEPT)
{
bool first_item = true;
appendStringInfoString(&buf, " AND t.TABLE_NAME ");
if (stmt->list_type == FDW_IMPORT_SCHEMA_EXCEPT)
appendStringInfoString(&buf, "NOT ");
appendStringInfoString(&buf, "IN (");
/* Append list of table names within IN clause */
foreach(lc, stmt->table_list)
{
RangeVar *rv = (RangeVar *) lfirst(lc);
if (first_item)
first_item = false;
else
appendStringInfoString(&buf, ", ");
appendStringInfo(&buf, "'%s'", rv->relname);
}
appendStringInfoChar(&buf, ')');
}
/* Append ORDER BY at the end of query to ensure output ordering */
appendStringInfo(&buf, " ORDER BY t.TABLE_NAME, c.ORDINAL_POSITION");
/* Fetch the data */
if (mysql_query(conn, buf.data) != 0)
mysql_error_print(conn);
res = mysql_store_result(conn);
row = mysql_fetch_row(res);
while (row)
{
char *tablename = row[0];
bool first_item = true;
bool has_set = false;
resetStringInfo(&buf);
appendStringInfo(&buf, "CREATE FOREIGN TABLE %s (\n",
quote_identifier(tablename));
/* Scan all rows for this table */
do
{
char *attname;
char *typename;
char *typedfn;
char *attnotnull;
char *attdefault;
#if PG_VERSION_NUM >= 140000
char *attgenerated;
#endif
/*
* If the table has no columns, we'll see nulls here. Also, if we
* have already discovered this table has a SET type column, we
* better skip the rest of the checking.
*/
if (row[1] == NULL || has_set)
continue;
attname = row[1];
typename = row[2];
if (strcmp(typename, "char") == 0 || strcmp(typename, "varchar") == 0)
typename = row[3];
typedfn = row[3];
attnotnull = row[4];
attdefault = row[5] == NULL ? (char *) NULL : row[5];
if (strncmp(typedfn, "enum(", 5) == 0)
{
/*
* If import_enum_as_text is set, then map MySQL enum type to
* text while import, else emit a warning to create mapping
* TYPE.
*/
if (import_enum_as_text)
typename = "text";
else
ereport(NOTICE,
(errmsg("error while generating the table definition"),
errhint("If you encounter an error, you may need to execute the following first:\nDO $$BEGIN IF NOT EXISTS (SELECT 1 FROM pg_catalog.pg_type WHERE typname = '%s') THEN CREATE TYPE %s AS %s; END IF; END$$;\n",
typename, typename, typedfn)));
}
/*
* PostgreSQL does not have an equivalent data type to map with
* SET, so skip the table definitions for the ones having SET type
* column.
*/
if (strncmp(typedfn, "set", 3) == 0)
{
ereport(WARNING,
(errmsg("skipping import for relation \"%s\"", quote_identifier(tablename)),
errdetail("MySQL SET columns are not supported.")));
has_set = true;
continue;
}
if (first_item)
first_item = false;
else
appendStringInfoString(&buf, ",\n");
/* Print column name and type */
appendStringInfo(&buf, " %s %s", quote_identifier(attname),
typename);
/* Add DEFAULT if needed */
if (import_default && attdefault != NULL)
appendStringInfo(&buf, " DEFAULT %s", attdefault);
#if PG_VERSION_NUM >= 140000
/*
* Add GENERATED if needed. Map VIRTUAL GENERATED to STORED in
* Postgres.
*/
attgenerated = (row[6] == NULL ? (char *) NULL : row[6]);
if (import_generated && attgenerated != NULL &&
(strcmp(attgenerated, "STORED GENERATED") == 0 ||
strcmp(attgenerated, "VIRTUAL GENERATED") == 0))
{
char *generated_expr;
generated_expr = mysql_remove_quotes(row[7]);
if (generated_expr == NULL)
elog(ERROR, "unsupported expression found for GENERATED column");
appendStringInfo(&buf, " GENERATED ALWAYS AS %s STORED",
generated_expr);
pfree(generated_expr);
}
#endif
/* Add NOT NULL if needed */
if (import_not_null && attnotnull[0] == 't')
appendStringInfoString(&buf, " NOT NULL");
}
while ((row = mysql_fetch_row(res)) &&
(strcmp(row[0], tablename) == 0));
/*
* As explained above, skip importing relations that have SET type
* column.
*/
if (has_set)
continue;
/*
* Add server name and table-level options. We specify remote
* database and table name as options (the latter to ensure that
* renaming the foreign table doesn't break the association).
*/
appendStringInfo(&buf,
"\n) SERVER %s OPTIONS (dbname '%s', table_name '%s');\n",
quote_identifier(server->servername),
stmt->remote_schema,
tablename);
commands = lappend(commands, pstrdup(buf.data));
}
/* Clean up */
mysql_free_result(res);
res = NULL;
resetStringInfo(&buf);
mysql_release_connection(conn);
return commands;
}
/*
* mysqlBeginForeignInsert
* Prepare for an insert operation triggered by partition routing
* or COPY FROM.
*
* This is not yet supported, so raise an error.
*/
static void
mysqlBeginForeignInsert(ModifyTableState *mtstate,
ResultRelInfo *resultRelInfo)
{
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("COPY and foreign partition routing not supported in mysql_fdw")));
}
/*
* mysqlEndForeignInsert
* BeginForeignInsert() is not yet implemented, hence we do not
* have anything to cleanup as of now. We throw an error here just
* to make sure when we do that we do not forget to cleanup
* resources.
*/
static void
mysqlEndForeignInsert(EState *estate, ResultRelInfo *resultRelInfo)
{
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("COPY and foreign partition routing not supported in mysql_fdw")));
}
/*
* Prepare for processing of parameters used in remote query.
*/
static void
prepare_query_params(PlanState *node,
List *fdw_exprs,
int numParams,
FmgrInfo **param_flinfo,
List **param_exprs,
const char ***param_values,
Oid **param_types)
{
int i;
ListCell *lc;
Assert(numParams > 0);
/* Prepare for output conversion of parameters used in remote query. */
*param_flinfo = (FmgrInfo *) palloc0(sizeof(FmgrInfo) * numParams);
*param_types = (Oid *) palloc0(sizeof(Oid) * numParams);
i = 0;
foreach(lc, fdw_exprs)
{
Node *param_expr = (Node *) lfirst(lc);
Oid typefnoid;
bool isvarlena;
(*param_types)[i] = exprType(param_expr);
getTypeOutputInfo(exprType(param_expr), &typefnoid, &isvarlena);
fmgr_info(typefnoid, &(*param_flinfo)[i]);
i++;
}
/*
* Prepare remote-parameter expressions for evaluation. (Note: in
* practice, we expect that all these expressions will be just Params, so
* we could possibly do something more efficient than using the full
* expression-eval machinery for this. But probably there would be little
* benefit, and it'd require postgres_fdw to know more than is desirable
* about Param evaluation.)
*/
*param_exprs = ExecInitExprList(fdw_exprs, node);
/* Allocate buffer for text form of query parameters. */
*param_values = (const char **) palloc0(numParams * sizeof(char *));
}
/*
* Construct array of query parameter values in text format.
*/
static void
process_query_params(ExprContext *econtext,
FmgrInfo *param_flinfo,
List *param_exprs,
const char **param_values,
MYSQL_BIND **mysql_bind_buf,
Oid *param_types)
{
int i;
ListCell *lc;
i = 0;
foreach(lc, param_exprs)
{
ExprState *expr_state = (ExprState *) lfirst(lc);
Datum expr_value;
bool isNull;
/* Evaluate the parameter expression */
expr_value = ExecEvalExpr(expr_state, econtext, &isNull);
mysql_bind_sql_var(param_types[i], i, expr_value, *mysql_bind_buf,
&isNull);
/*
* Get string representation of each parameter value by invoking
* type-specific output function, unless the value is null.
*/
if (isNull)
param_values[i] = NULL;
else
param_values[i] = OutputFunctionCall(¶m_flinfo[i], expr_value);
i++;
}
}
/*
* Process the query params and bind the same with the statement, if any.
* Also, execute the statement. If fetching the var size column then bind
* those again to allocate field->max_length memory.
*/
static void
bind_stmt_params_and_exec(ForeignScanState *node)
{
MySQLFdwExecState *festate = (MySQLFdwExecState *) node->fdw_state;
ExprContext *econtext = node->ss.ps.ps_ExprContext;
int numParams = festate->numParams;
const char **values = festate->param_values;
MYSQL_BIND *mysql_bind_buffer = NULL;
ListCell *lc;
TupleDesc tupleDescriptor = festate->attinmeta->tupdesc;
int atindex = 0;
MemoryContext oldcontext;
/*
* Construct array of query parameter values in text format. We do the
* conversions in the short-lived per-tuple context, so as not to cause a
* memory leak over repeated scans.
*/
if (numParams > 0)
{
oldcontext = MemoryContextSwitchTo(econtext->ecxt_per_tuple_memory);
mysql_bind_buffer = (MYSQL_BIND *) palloc0(sizeof(MYSQL_BIND) * numParams);
process_query_params(econtext,
festate->param_flinfo,
festate->param_exprs,
values,
&mysql_bind_buffer,
festate->param_types);
mysql_stmt_bind_param(festate->stmt, mysql_bind_buffer);
MemoryContextSwitchTo(oldcontext);
}
/*
* Finally, execute the query. The result will be placed in the array we
* already bind.
*/
if (mysql_stmt_execute(festate->stmt) != 0)
mysql_stmt_error_print(festate, "failed to execute the MySQL query");
/* Mark the query as executed */
festate->query_executed = true;
if (!festate->has_var_size_col)
return;
/* Bind the result columns in long-lived memory context */
oldcontext = MemoryContextSwitchTo(econtext->ecxt_per_query_memory);
if (mysql_stmt_store_result(festate->stmt) != 0)
mysql_stmt_error_print(festate, "failed to store the result");
/* Bind only var size columns as per field->max_length */
foreach(lc, festate->retrieved_attrs)
{
int attnum = lfirst_int(lc) - 1;
Oid pgtype = TupleDescAttr(tupleDescriptor, attnum)->atttypid;
int32 pgtypmod = TupleDescAttr(tupleDescriptor, attnum)->atttypmod;
if (TupleDescAttr(tupleDescriptor, attnum)->attisdropped)
continue;
if (pgtype != TEXTOID)
{
atindex++;
continue;
}
festate->table->column[atindex].mysql_bind = &festate->table->mysql_bind[atindex];
mysql_bind_result(pgtype, pgtypmod,
&festate->table->mysql_fields[atindex],
&festate->table->column[atindex]);
atindex++;
}
/* Bind the results pointers for the prepare statements */
if (mysql_stmt_bind_result(festate->stmt, festate->table->mysql_bind) != 0)
mysql_stmt_error_print(festate, "failed to bind the MySQL query");
MemoryContextSwitchTo(oldcontext);
}
Datum
mysql_fdw_version(PG_FUNCTION_ARGS)
{
PG_RETURN_INT32(CODE_VERSION);
}
static void
mysql_error_print(MYSQL *conn)
{
switch (mysql_errno(conn))
{
case CR_NO_ERROR:
/* Should not happen, though give some message */
elog(ERROR, "unexpected error code");
break;
case CR_OUT_OF_MEMORY:
case CR_SERVER_GONE_ERROR:
case CR_SERVER_LOST:
case CR_UNKNOWN_ERROR:
mysql_release_connection(conn);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to execute the MySQL query: \n%s",
mysql_error(conn))));
break;
case CR_COMMANDS_OUT_OF_SYNC:
default:
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to execute the MySQL query: \n%s",
mysql_error(conn))));
}
}
static void
mysql_stmt_error_print(MySQLFdwExecState *festate, const char *msg)
{
switch (mysql_stmt_errno(festate->stmt))
{
case CR_NO_ERROR:
/* Should not happen, though give some message */
elog(ERROR, "unexpected error code");
break;
case CR_OUT_OF_MEMORY:
case CR_SERVER_GONE_ERROR:
case CR_SERVER_LOST:
case CR_UNKNOWN_ERROR:
mysql_release_connection(festate->conn);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("%s: \n%s", msg, mysql_error(festate->conn))));
break;
case CR_COMMANDS_OUT_OF_SYNC:
default:
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("%s: \n%s", msg, mysql_error(festate->conn))));
break;
}
}
/*
* getUpdateTargetAttrs
* Returns the list of attribute numbers of the columns being updated.
*/
static List *
getUpdateTargetAttrs(PlannerInfo *root, RangeTblEntry *rte)
{
List *targetAttrs = NIL;
Bitmapset *tmpset;
AttrNumber col;
#if PG_VERSION_NUM >= 160000
RTEPermissionInfo *perminfo;
int attidx = -1;
perminfo = getRTEPermissionInfo(root->parse->rteperminfos, rte);
tmpset = bms_copy(perminfo->updatedCols);
#else
tmpset = bms_copy(rte->updatedCols);
#endif
#if PG_VERSION_NUM >= 160000
while ((attidx = bms_next_member(tmpset, attidx)) >= 0)
#else
while ((col = bms_first_member(tmpset)) >= 0)
#endif
{
#if PG_VERSION_NUM >= 160000
col = attidx + FirstLowInvalidHeapAttributeNumber;
#else
col += FirstLowInvalidHeapAttributeNumber;
#endif
if (col <= InvalidAttrNumber) /* shouldn't happen */
elog(ERROR, "system-column update is not supported");
/* We also disallow updates to the first column */
if (col == 1)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("row identifier column update is not supported")));
targetAttrs = lappend_int(targetAttrs, col);
}
return targetAttrs;
}
/*
* mysqlGetForeignJoinPaths
* Add possible ForeignPath to joinrel, if join is safe to push down.
*/
static void
mysqlGetForeignJoinPaths(PlannerInfo *root, RelOptInfo *joinrel,
RelOptInfo *outerrel, RelOptInfo *innerrel,
JoinType jointype, JoinPathExtraData *extra)
{
MySQLFdwRelationInfo *fpinfo;
ForeignPath *joinpath;
Cost startup_cost;
Cost total_cost;
Path *epq_path = NULL; /* Path to create plan to be executed when
* EvalPlanQual gets triggered. */
/*
* Skip if this join combination has been considered already.
*/
if (joinrel->fdw_private)
return;
/*
* Create unfinished MySQLFdwRelationInfo entry which is used to indicate
* that the join relation is already considered, so that we won't waste
* time in judging safety of join pushdown and adding the same paths again
* if found safe. Once we know that this join can be pushed down, we fill
* the entry.
*/
fpinfo = (MySQLFdwRelationInfo *) palloc0(sizeof(MySQLFdwRelationInfo));
fpinfo->pushdown_safe = false;
joinrel->fdw_private = fpinfo;
/* attrs_used is only for base relations. */
fpinfo->attrs_used = NULL;
/*
* In case there is a possibility that EvalPlanQual will be executed, we
* should be able to reconstruct the row, from base relations applying all
* the conditions. We create a local plan from a suitable local path
* available in the path list. In case such a path doesn't exist, we can
* not push the join to the foreign server since we won't be able to
* reconstruct the row for EvalPlanQual(). Find an alternative local path
* before we add ForeignPath, lest the new path would kick possibly the
* only local path. Do this before calling mysql_foreign_join_ok(), since
* that function updates fpinfo and marks it as pushable if the join is
* found to be pushable.
*/
if (root->parse->commandType == CMD_DELETE ||
root->parse->commandType == CMD_UPDATE ||
root->rowMarks)
{
epq_path = GetExistingLocalJoinPath(joinrel);
if (!epq_path)
{
elog(DEBUG3, "could not push down foreign join because a local path suitable for EPQ checks was not found");
return;
}
}
else
epq_path = NULL;
if (!mysql_foreign_join_ok(root, joinrel, jointype, outerrel, innerrel,
extra))
{
/* Free path required for EPQ if we copied one; we don't need it now */
if (epq_path)
pfree(epq_path);
return;
}
/* TODO: Put accurate estimates here */
startup_cost = 15.0;
total_cost = 20 + startup_cost;
/*
* Create a new join path and add it to the joinrel which represents a
* join between foreign tables.
*/
#if PG_VERSION_NUM >= 170000
joinpath = create_foreign_join_path(root,
joinrel,
NULL, /* default pathtarget */
joinrel->rows,
startup_cost,
total_cost,
NIL, /* no pathkeys */
joinrel->lateral_relids,
epq_path,
extra->restrictlist,
NIL); /* no fdw_private */
#else
joinpath = create_foreign_join_path(root,
joinrel,
NULL, /* default pathtarget */
joinrel->rows,
startup_cost,
total_cost,
NIL, /* no pathkeys */
joinrel->lateral_relids,
epq_path,
NIL); /* no fdw_private */
#endif
/* Add generated path into joinrel by add_path(). */
add_path(joinrel, (Path *) joinpath);
/* Add paths with pathkeys */
#if PG_VERSION_NUM >= 170000
mysql_add_paths_with_pathkeys(root, joinrel, epq_path, startup_cost,
total_cost, extra->restrictlist);
#else
mysql_add_paths_with_pathkeys(root, joinrel, epq_path, startup_cost,
total_cost);
#endif
/* XXX Consider parameterized paths for the join relation */
}
/*
* mysql_foreign_join_ok
* Assess whether the join between inner and outer relations can be
* pushed down to the foreign server.
*
* As a side effect, save information we obtain in this function to
* MySQLFdwRelationInfo passed in.
*/
static bool
mysql_foreign_join_ok(PlannerInfo *root, RelOptInfo *joinrel,
JoinType jointype, RelOptInfo *outerrel,
RelOptInfo *innerrel, JoinPathExtraData *extra)
{
MySQLFdwRelationInfo *fpinfo;
MySQLFdwRelationInfo *fpinfo_o;
MySQLFdwRelationInfo *fpinfo_i;
ListCell *lc;
List *joinclauses;
/*
* We support pushing down INNER, LEFT and RIGHT joins. Constructing
* queries representing SEMI and ANTI joins is hard, hence not considered
* right now.
*/
if (jointype != JOIN_INNER && jointype != JOIN_LEFT &&
jointype != JOIN_RIGHT)
return false;
/*
* If either of the joining relations is marked as unsafe to pushdown, the
* join cannot be pushed down.
*/
fpinfo = (MySQLFdwRelationInfo *) joinrel->fdw_private;
fpinfo_o = (MySQLFdwRelationInfo *) outerrel->fdw_private;
fpinfo_i = (MySQLFdwRelationInfo *) innerrel->fdw_private;
if (!fpinfo_o || !fpinfo_o->pushdown_safe ||
!fpinfo_i || !fpinfo_i->pushdown_safe)
return false;
/*
* If joining relations have local conditions, those conditions are
* required to be applied before joining the relations. Hence the join
* can not be pushed down.
*/
if (fpinfo_o->local_conds || fpinfo_i->local_conds)
return false;
/*
* Separate restrict list into join quals and pushed-down (other) quals.
*
* Join quals belonging to an outer join must all be shippable, else we
* cannot execute the join remotely. Add such quals to 'joinclauses'.
*
* Add other quals to fpinfo->remote_conds if they are shippable, else to
* fpinfo->local_conds. In an inner join it's okay to execute conditions
* either locally or remotely; the same is true for pushed-down conditions
* at an outer join.
*
* Note we might return failure after having already scribbled on
* fpinfo->remote_conds and fpinfo->local_conds. That's okay because we
* won't consult those lists again if we deem the join unshippable.
*/
joinclauses = NIL;
foreach(lc, extra->restrictlist)
{
RestrictInfo *rinfo = lfirst_node(RestrictInfo, lc);
bool is_remote_clause = mysql_is_foreign_expr(root, joinrel,
rinfo->clause,
true);
if (IS_OUTER_JOIN(jointype) &&
!RINFO_IS_PUSHED_DOWN(rinfo, joinrel->relids))
{
if (!is_remote_clause)
return false;
joinclauses = lappend(joinclauses, rinfo);
}
else
{
if (is_remote_clause)
{
/*
* Unlike postgres_fdw, don't append the join clauses to
* remote_conds, instead keep the join clauses separate.
* Currently, we are providing limited operator pushability
* support for join pushdown, hence we keep those clauses
* separate to avoid INNER JOIN not getting pushdown if any of
* the WHERE clause is not shippable as per join pushdown
* shippability.
*/
if (jointype == JOIN_INNER)
joinclauses = lappend(joinclauses, rinfo);
else
fpinfo->remote_conds = lappend(fpinfo->remote_conds, rinfo);
}
else
fpinfo->local_conds = lappend(fpinfo->local_conds, rinfo);
}
}
/*
* mysqlDeparseExplicitTargetList() isn't smart enough to handle anything
* other than a Var. In particular, if there's some PlaceHolderVar that
* would need to be evaluated within this join tree (because there's an
* upper reference to a quantity that may go to NULL as a result of an
* outer join), then we can't try to push the join down because we'll fail
* when we get to mysqlDeparseExplicitTargetList(). However, a
* PlaceHolderVar that needs to be evaluated *at the top* of this join
* tree is OK, because we can do that locally after fetching the results
* from the remote side.
*/
foreach(lc, root->placeholder_list)
{
PlaceHolderInfo *phinfo = lfirst(lc);
Relids relids;
/* PlaceHolderInfo refers to parent relids, not child relids. */
relids = IS_OTHER_REL(joinrel) ?
joinrel->top_parent_relids : joinrel->relids;
if (bms_is_subset(phinfo->ph_eval_at, relids) &&
bms_nonempty_difference(relids, phinfo->ph_eval_at))
return false;
}
/* Save the join clauses, for later use. */
fpinfo->joinclauses = joinclauses;
/*
* Pull the other remote conditions from the joining relations into join
* clauses or other remote clauses (remote_conds) of this relation. This
* avoids building subqueries at every join step.
*
* For an inner join, clauses from both the relations are added to the
* other remote clauses. For an OUTER join, the clauses from the outer
* side are added to remote_conds since those can be evaluated after the
* join is evaluated. The clauses from inner side are added to the
* joinclauses, since they need to evaluated while constructing the join.
*
* The joining sides cannot have local conditions, thus no need to test
* shippability of the clauses being pulled up.
*/
switch (jointype)
{
case JOIN_INNER:
fpinfo->remote_conds = mysql_list_concat(fpinfo->remote_conds,
fpinfo_i->remote_conds);
fpinfo->remote_conds = mysql_list_concat(fpinfo->remote_conds,
fpinfo_o->remote_conds);
break;
case JOIN_LEFT:
/* Check that clauses from the inner side are pushable or not. */
foreach(lc, fpinfo_i->remote_conds)
{
RestrictInfo *ri = (RestrictInfo *) lfirst(lc);
if (!mysql_is_foreign_expr(root, joinrel, ri->clause, true))
return false;
}
fpinfo->joinclauses = mysql_list_concat(fpinfo->joinclauses,
fpinfo_i->remote_conds);
fpinfo->remote_conds = mysql_list_concat(fpinfo->remote_conds,
fpinfo_o->remote_conds);
break;
case JOIN_RIGHT:
/* Check that clauses from the outer side are pushable or not. */
foreach(lc, fpinfo_o->remote_conds)
{
RestrictInfo *ri = (RestrictInfo *) lfirst(lc);
if (!mysql_is_foreign_expr(root, joinrel, ri->clause, true))
return false;
}
fpinfo->joinclauses = mysql_list_concat(fpinfo->joinclauses,
fpinfo_o->remote_conds);
fpinfo->remote_conds = mysql_list_concat(fpinfo->remote_conds,
fpinfo_i->remote_conds);
break;
default:
/* Should not happen, we have just check this above */
elog(ERROR, "unsupported join type %d", jointype);
}
fpinfo->outerrel = outerrel;
fpinfo->innerrel = innerrel;
fpinfo->jointype = jointype;
/* Mark that this join can be pushed down safely */
fpinfo->pushdown_safe = true;
/*
* Set the string describing this join relation to be used in EXPLAIN
* output of corresponding ForeignScan.
*/
fpinfo->relation_name = makeStringInfo();
appendStringInfo(fpinfo->relation_name, "(%s) %s JOIN (%s)",
fpinfo_o->relation_name->data,
mysql_get_jointype_name(fpinfo->jointype),
fpinfo_i->relation_name->data);
return true;
}
/*
* mysqlRecheckForeignScan
* Execute a local join execution plan for a foreign join.
*/
static bool
mysqlRecheckForeignScan(ForeignScanState *node, TupleTableSlot *slot)
{
Index scanrelid = ((Scan *) node->ss.ps.plan)->scanrelid;
PlanState *outerPlan = outerPlanState(node);
TupleTableSlot *result;
/* For base foreign relations, it suffices to set fdw_recheck_quals */
if (scanrelid > 0)
return true;
Assert(outerPlan != NULL);
/* Execute a local join execution plan */
result = ExecProcNode(outerPlan);
if (TupIsNull(result))
return false;
/* Store result in the given slot */
ExecCopySlot(slot, result);
return true;
}
/*
* mysql_adjust_whole_row_ref
* If the given list of Var nodes has whole-row reference, add Var
* nodes corresponding to all the attributes of the corresponding
* base relation.
*
* The function also returns an array of lists of var nodes. The array is
* indexed by the RTI and entry there contains the list of Var nodes which
* make up the whole-row reference for corresponding base relation.
* The relations not covered by given join and the relations which do not
* have whole-row references will have NIL entries.
*
* If there are no whole-row references in the given list, the given list is
* returned unmodified and the other list is NIL.
*/
static List *
mysql_adjust_whole_row_ref(PlannerInfo *root, List *scan_var_list,
List **whole_row_lists, Bitmapset *relids)
{
ListCell *lc;
bool has_whole_row = false;
List **wr_list_array = NULL;
int cnt_rt;
List *wr_scan_var_list = NIL;
#if PG_VERSION_NUM >= 160000
ListCell *cell;
#endif
*whole_row_lists = NIL;
/* Check if there exists at least one whole row reference. */
foreach(lc, scan_var_list)
{
Var *var = (Var *) lfirst(lc);
Assert(IsA(var, Var));
if (var->varattno == 0)
{
has_whole_row = true;
break;
}
}
if (!has_whole_row)
return scan_var_list;
/*
* Allocate large enough memory to hold whole-row Var lists for all the
* relations. This array will then be converted into a list of lists.
* Since all the base relations are marked by range table index, it's easy
* to keep track of the ones whose whole-row references have been taken
* care of.
*/
wr_list_array = (List **) palloc0(sizeof(List *) *
list_length(root->parse->rtable));
/* Adjust the whole-row references as described in the prologue. */
foreach(lc, scan_var_list)
{
Var *var = (Var *) lfirst(lc);
Assert(IsA(var, Var));
if (var->varattno == 0 && !wr_list_array[var->varno - 1])
{
List *wr_var_list;
List *retrieved_attrs;
RangeTblEntry *rte = rt_fetch(var->varno, root->parse->rtable);
Bitmapset *attrs_used;
Assert(OidIsValid(rte->relid));
/*
* Get list of Var nodes for all undropped attributes of the base
* relation.
*/
attrs_used = bms_make_singleton(0 -
FirstLowInvalidHeapAttributeNumber);
/*
* If the whole-row reference falls on the nullable side of the
* outer join and that side is null in a given result row, the
* whole row reference should be set to NULL. In this case, all
* the columns of that relation will be NULL, but that does not
* help since those columns can be genuinely NULL in a row.
*/
wr_var_list =
mysql_build_scan_list_for_baserel(rte->relid, var->varno,
attrs_used,
&retrieved_attrs);
wr_list_array[var->varno - 1] = wr_var_list;
#if PG_VERSION_NUM >= 160000
foreach(cell, wr_var_list)
{
Var *tlvar = (Var *) lfirst(cell);
wr_scan_var_list = mysql_varlist_append_unique_var(wr_scan_var_list,
tlvar);
}
#else
wr_scan_var_list = list_concat_unique(wr_scan_var_list,
wr_var_list);
#endif
bms_free(attrs_used);
list_free(retrieved_attrs);
}
else
#if PG_VERSION_NUM >= 160000
wr_scan_var_list = mysql_varlist_append_unique_var(wr_scan_var_list,
var);
#else
wr_scan_var_list = list_append_unique(wr_scan_var_list, var);
#endif
}
/*
* Collect the required Var node lists into a list of lists ordered by the
* base relations' range table indexes.
*/
cnt_rt = -1;
while ((cnt_rt = bms_next_member(relids, cnt_rt)) >= 0)
*whole_row_lists = lappend(*whole_row_lists, wr_list_array[cnt_rt - 1]);
pfree(wr_list_array);
return wr_scan_var_list;
}
/*
* mysql_build_scan_list_for_baserel
* Build list of nodes corresponding to the attributes requested for
* given base relation.
*
* The list contains Var nodes corresponding to the attributes specified in
* attrs_used. If whole-row reference is required, the functions adds Var
* nodes corresponding to all the attributes in the relation.
*/
static List *
mysql_build_scan_list_for_baserel(Oid relid, Index varno,
Bitmapset *attrs_used,
List **retrieved_attrs)
{
int attno;
List *tlist = NIL;
Node *node;
bool wholerow_requested = false;
Relation relation;
TupleDesc tupdesc;
Assert(OidIsValid(relid));
*retrieved_attrs = NIL;
/* Planner must have taken a lock, so request no lock here */
#if PG_VERSION_NUM < 130000
relation = heap_open(relid, NoLock);
#else
relation = table_open(relid, NoLock);
#endif
tupdesc = RelationGetDescr(relation);
/* Is whole-row reference requested? */
wholerow_requested = bms_is_member(0 - FirstLowInvalidHeapAttributeNumber,
attrs_used);
/* Handle user defined attributes. */
for (attno = 1; attno <= tupdesc->natts; attno++)
{
Form_pg_attribute attr = TupleDescAttr(tupdesc, attno - 1);
/* Ignore dropped attributes. */
if (attr->attisdropped)
continue;
/*
* For a required attribute create a Var node and add corresponding
* attribute number to the retrieved_attrs list.
*/
if (wholerow_requested ||
bms_is_member(attno - FirstLowInvalidHeapAttributeNumber,
attrs_used))
{
node = (Node *) makeVar(varno, attno, attr->atttypid,
attr->atttypmod, attr->attcollation, 0);
tlist = lappend(tlist, node);
*retrieved_attrs = lappend_int(*retrieved_attrs, attno);
}
}
#if PG_VERSION_NUM < 130000
heap_close(relation, NoLock);
#else
table_close(relation, NoLock);
#endif
return tlist;
}
/*
* mysql_build_whole_row_constr_info
* Calculate and save the information required to construct whole row
* references of base foreign relations involved in the pushed down join.
*
* tupdesc is the tuple descriptor describing the result returned by the
* ForeignScan node. It is expected to be same as
* ForeignScanState::ss::ss_ScanTupleSlot, which is constructed using
* fdw_scan_tlist.
*
* relids is the the set of relations participating in the pushed down join.
*
* max_relid is the maximum number of relation index expected.
*
* whole_row_lists is the list of Var node lists constituting the whole-row
* reference for base relations in the relids in the same order.
*
* scan_tlist is the targetlist representing the result fetched from the
* foreign server.
*
* fdw_scan_tlist is the targetlist representing the result returned by the
* ForeignScan node.
*/
static void
mysql_build_whole_row_constr_info(MySQLFdwExecState *festate,
TupleDesc tupdesc, Bitmapset *relids,
int max_relid, List *whole_row_lists,
List *scan_tlist, List *fdw_scan_tlist)
{
int cnt_rt;
int cnt_vl;
int cnt_attr;
ListCell *lc;
int *fs_attr_pos = NULL;
MySQLWRState **mysqlwrstates = NULL;
int fs_num_atts;
/*
* Allocate memory to hold whole-row reference state for each relation.
* Indexing by the range table index is faster than maintaining an
* associative map.
*/
mysqlwrstates = (MySQLWRState **) palloc0(sizeof(MySQLWRState *) * max_relid);
/*
* Set the whole-row reference state for the relations whose whole-row
* reference needs to be constructed.
*/
cnt_rt = -1;
cnt_vl = 0;
while ((cnt_rt = bms_next_member(relids, cnt_rt)) >= 0)
{
MySQLWRState *wr_state = (MySQLWRState *) palloc0(sizeof(MySQLWRState));
List *var_list = list_nth(whole_row_lists, cnt_vl++);
int natts;
/* Skip the relations without whole-row references. */
if (list_length(var_list) <= 0)
continue;
natts = list_length(var_list);
wr_state->attr_pos = (int *) palloc(sizeof(int) * natts);
/*
* Create a map of attributes required for whole-row reference to
* their positions in the result fetched from the foreign server.
*/
cnt_attr = 0;
foreach(lc, var_list)
{
Var *var = lfirst(lc);
TargetEntry *tle_sl;
Assert(IsA(var, Var) && var->varno == cnt_rt);
#if PG_VERSION_NUM >= 160000
tle_sl = mysql_tlist_member_match_var(var, scan_tlist);
#else
tle_sl = tlist_member((Expr *) var, scan_tlist);
#endif
Assert(tle_sl);
wr_state->attr_pos[cnt_attr++] = tle_sl->resno - 1;
}
Assert(natts == cnt_attr);
/* Build rest of the state */
wr_state->tupdesc = ExecTypeFromExprList(var_list);
Assert(natts == wr_state->tupdesc->natts);
wr_state->values = (Datum *) palloc(sizeof(Datum) * natts);
wr_state->nulls = (bool *) palloc(sizeof(bool) * natts);
BlessTupleDesc(wr_state->tupdesc);
mysqlwrstates[cnt_rt - 1] = wr_state;
}
/*
* Construct the array mapping columns in the ForeignScan node output to
* their positions in the result fetched from the foreign server. Positive
* values indicate the locations in the result and negative values
* indicate the range table indexes of the base table whose whole-row
* reference values are requested in that place.
*/
fs_num_atts = list_length(fdw_scan_tlist);
fs_attr_pos = (int *) palloc(sizeof(int) * fs_num_atts);
cnt_attr = 0;
foreach(lc, fdw_scan_tlist)
{
TargetEntry *tle_fsl = lfirst(lc);
Var *var = (Var *) tle_fsl->expr;
Assert(IsA(var, Var));
if (var->varattno == 0)
fs_attr_pos[cnt_attr] = -var->varno;
else
{
#if PG_VERSION_NUM >= 160000
TargetEntry *tle_sl = mysql_tlist_member_match_var(var, scan_tlist);
#else
TargetEntry *tle_sl = tlist_member((Expr *) var, scan_tlist);
#endif
Assert(tle_sl);
fs_attr_pos[cnt_attr] = tle_sl->resno - 1;
}
cnt_attr++;
}
/*
* The tuple descriptor passed in should have same number of attributes as
* the entries in fdw_scan_tlist.
*/
Assert(fs_num_atts == tupdesc->natts);
festate->mysqlwrstates = mysqlwrstates;
festate->wr_attrs_pos = fs_attr_pos;
festate->wr_tupdesc = tupdesc;
festate->wr_values = (Datum *) palloc(sizeof(Datum) * tupdesc->natts);
festate->wr_nulls = (bool *) palloc(sizeof(bool) * tupdesc->natts);
return;
}
/*
* mysql_get_tuple_with_whole_row
* Construct the result row with whole-row references.
*/
static HeapTuple
mysql_get_tuple_with_whole_row(MySQLFdwExecState *festate, Datum *values,
bool *nulls)
{
TupleDesc tupdesc = festate->wr_tupdesc;
Datum *wr_values = festate->wr_values;
bool *wr_nulls = festate->wr_nulls;
int cnt_attr;
HeapTuple tuple = NULL;
for (cnt_attr = 0; cnt_attr < tupdesc->natts; cnt_attr++)
{
int attr_pos = festate->wr_attrs_pos[cnt_attr];
if (attr_pos >= 0)
{
wr_values[cnt_attr] = values[attr_pos];
wr_nulls[cnt_attr] = nulls[attr_pos];
}
else
{
/*
* The RTI of relation whose whole row reference is to be
* constructed is stored as -ve attr_pos.
*/
MySQLWRState *wr_state = festate->mysqlwrstates[-attr_pos - 1];
wr_nulls[cnt_attr] = nulls[wr_state->wr_null_ind_pos];
if (!wr_nulls[cnt_attr])
{
HeapTuple wr_tuple = mysql_form_whole_row(wr_state,
values,
nulls);
wr_values[cnt_attr] = HeapTupleGetDatum(wr_tuple);
}
}
}
tuple = heap_form_tuple(tupdesc, wr_values, wr_nulls);
return tuple;
}
/*
* mysql_form_whole_row
* The function constructs whole-row reference for a base relation
* with the information given in wr_state.
*
* wr_state contains the information about which attributes from values and
* nulls are to be used and in which order to construct the whole-row
* reference.
*/
static HeapTuple
mysql_form_whole_row(MySQLWRState *wr_state, Datum *values, bool *nulls)
{
int cnt_attr;
for (cnt_attr = 0; cnt_attr < wr_state->tupdesc->natts; cnt_attr++)
{
int attr_pos = wr_state->attr_pos[cnt_attr];
wr_state->values[cnt_attr] = values[attr_pos];
wr_state->nulls[cnt_attr] = nulls[attr_pos];
}
return heap_form_tuple(wr_state->tupdesc, wr_state->values,
wr_state->nulls);
}
/*
* mysql_foreign_grouping_ok
* Assess whether the aggregation, grouping and having operations can
* be pushed down to the foreign server. As a side effect, save
* information we obtain in this function to MySQLFdwRelationInfo of
* the input relation.
*/
static bool
mysql_foreign_grouping_ok(PlannerInfo *root, RelOptInfo *grouped_rel,
Node *havingQual)
{
Query *query = root->parse;
PathTarget *grouping_target = grouped_rel->reltarget;
MySQLFdwRelationInfo *fpinfo = (MySQLFdwRelationInfo *) grouped_rel->fdw_private;
MySQLFdwRelationInfo *ofpinfo;
ListCell *lc;
int i;
List *tlist = NIL;
/* Grouping Sets are not pushable */
if (query->groupingSets)
return false;
/* Get the fpinfo of the underlying scan relation. */
ofpinfo = (MySQLFdwRelationInfo *) fpinfo->outerrel->fdw_private;
/*
* If underneath input relation has any local conditions, those conditions
* are required to be applied before performing aggregation. Hence the
* aggregate cannot be pushed down.
*/
if (ofpinfo->local_conds)
return false;
/*
* Evaluate grouping targets and check whether they are safe to push down
* to the foreign side. All GROUP BY expressions will be part of the
* grouping target and thus there is no need to evaluate it separately.
* While doing so, add required expressions into target list which can
* then be used to pass to foreign server.
*/
i = 0;
foreach(lc, grouping_target->exprs)
{
Expr *expr = (Expr *) lfirst(lc);
Index sgref = get_pathtarget_sortgroupref(grouping_target, i);
ListCell *l;
/* Check whether this expression is part of GROUP BY clause */
if (sgref && get_sortgroupref_clause_noerr(sgref, query->groupClause))
{
TargetEntry *tle;
/*
* If any of the GROUP BY expression is not shippable we can not
* push down aggregation to the foreign server.
*/
if (!mysql_is_foreign_expr(root, grouped_rel, expr, true))
return false;
/*
* If it would be a foreign param, we can't put it into the tlist,
* so we have to fail.
*/
if (mysql_is_foreign_param(root, grouped_rel, expr))
return false;
/*
* Pushable, so add to tlist. We need to create a TLE for this
* expression and apply the sortgroupref to it. We cannot use
* add_to_flat_tlist() here because that avoids making duplicate
* entries in the tlist. If there are duplicate entries with
* distinct sortgrouprefs, we have to duplicate that situation in
* the output tlist.
*/
tle = makeTargetEntry(expr, list_length(tlist) + 1, NULL, false);
tle->ressortgroupref = sgref;
tlist = lappend(tlist, tle);
}
else
{
/* Check entire expression whether it is pushable or not */
if (mysql_is_foreign_expr(root, grouped_rel, expr, true) &&
!mysql_is_foreign_param(root, grouped_rel, expr))
{
/* Pushable, add to tlist */
tlist = add_to_flat_tlist(tlist, list_make1(expr));
}
else
{
List *aggvars;
/* Not matched exactly, pull the var with aggregates then */
aggvars = pull_var_clause((Node *) expr,
PVC_INCLUDE_AGGREGATES);
/*
* If any aggregate expression is not shippable, then we
* cannot push down aggregation to the foreign server. (We
* don't have to check is_foreign_param, since that certainly
* won't return true for any such expression.)
*/
if (!mysql_is_foreign_expr(root, grouped_rel, (Expr *) aggvars, true))
return false;
/*
* Add aggregates, if any, into the targetlist. Plain var
* nodes should be either same as some GROUP BY expression or
* part of some GROUP BY expression. In later case, the query
* cannot refer plain var nodes without the surrounding
* expression. In both the cases, they are already part of
* the targetlist and thus no need to add them again. In fact
* adding pulled plain var nodes in SELECT clause will cause
* an error on the foreign server if they are not same as some
* GROUP BY expression.
*/
foreach(l, aggvars)
{
Expr *aggref = (Expr *) lfirst(l);
if (IsA(aggref, Aggref))
tlist = add_to_flat_tlist(tlist, list_make1(aggref));
}
}
}
i++;
}
/*
* Classify the pushable and non-pushable having clauses and save them in
* remote_conds and local_conds of the grouped rel's fpinfo.
*/
if (havingQual)
{
foreach(lc, (List *) havingQual)
{
Expr *expr = (Expr *) lfirst(lc);
RestrictInfo *rinfo;
/*
* Currently, the core code doesn't wrap havingQuals in
* RestrictInfos, so we must make our own.
*/
Assert(!IsA(expr, RestrictInfo));
#if PG_VERSION_NUM >= 160000
rinfo = make_restrictinfo(root,
expr,
true,
false,
false,
false,
root->qual_security_level,
grouped_rel->relids,
NULL,
NULL);
#elif PG_VERSION_NUM >= 140000
rinfo = make_restrictinfo(root,
expr,
true,
false,
false,
root->qual_security_level,
grouped_rel->relids,
NULL,
NULL);
#else
rinfo = make_restrictinfo(expr,
true,
false,
false,
root->qual_security_level,
grouped_rel->relids,
NULL,
NULL);
#endif
if (!mysql_is_foreign_expr(root, grouped_rel, expr, true))
fpinfo->local_conds = lappend(fpinfo->local_conds, rinfo);
else
fpinfo->remote_conds = lappend(fpinfo->remote_conds, rinfo);
}
}
/*
* If there are any local conditions, pull Vars and aggregates from it and
* check whether they are safe to pushdown or not.
*/
if (fpinfo->local_conds)
{
List *aggvars = NIL;
foreach(lc, fpinfo->local_conds)
{
RestrictInfo *rinfo = lfirst_node(RestrictInfo, lc);
aggvars = list_concat(aggvars,
pull_var_clause((Node *) rinfo->clause,
PVC_INCLUDE_AGGREGATES));
}
foreach(lc, aggvars)
{
Expr *expr = (Expr *) lfirst(lc);
/*
* If aggregates within local conditions are not safe to push
* down, then we cannot push down the query. Vars are already
* part of GROUP BY clause which are checked above, so no need to
* access them again here. Again, we need not check
* is_foreign_param for a foreign aggregate.
*/
if (IsA(expr, Aggref))
{
if (!mysql_is_foreign_expr(root, grouped_rel, expr, true))
return false;
tlist = add_to_flat_tlist(tlist, list_make1(expr));
}
}
}
/* Store generated targetlist */
fpinfo->grouped_tlist = tlist;
/* Safe to pushdown */
fpinfo->pushdown_safe = true;
/*
* Set the string describing this grouped relation to be used in EXPLAIN
* output of corresponding ForeignScan.
*/
fpinfo->relation_name = makeStringInfo();
appendStringInfo(fpinfo->relation_name, "Aggregate on (%s)",
ofpinfo->relation_name->data);
return true;
}
/*
* mysqlGetForeignUpperPaths
* Add paths for post-join operations like aggregation, grouping etc. if
* corresponding operations are safe to push down.
*
* Right now, we only support aggregate, grouping and having clause pushdown.
*/
static void
mysqlGetForeignUpperPaths(PlannerInfo *root, UpperRelationKind stage,
RelOptInfo *input_rel, RelOptInfo *output_rel,
void *extra)
{
MySQLFdwRelationInfo *fpinfo;
/*
* If input rel is not safe to pushdown, then simply return as we cannot
* perform any post-join operations on the foreign server.
*/
if (!input_rel->fdw_private ||
!((MySQLFdwRelationInfo *) input_rel->fdw_private)->pushdown_safe)
return;
/* Ignore stages we don't support; and skip any duplicate calls. */
if ((stage != UPPERREL_GROUP_AGG && stage != UPPERREL_ORDERED &&
stage != UPPERREL_FINAL) ||
output_rel->fdw_private)
return;
fpinfo = (MySQLFdwRelationInfo *) palloc0(sizeof(MySQLFdwRelationInfo));
fpinfo->pushdown_safe = false;
fpinfo->stage = stage;
output_rel->fdw_private = fpinfo;
switch (stage)
{
case UPPERREL_GROUP_AGG:
mysql_add_foreign_grouping_paths(root, input_rel, output_rel,
(GroupPathExtraData *) extra);
break;
case UPPERREL_ORDERED:
mysql_add_foreign_ordered_paths(root, input_rel, output_rel);
break;
case UPPERREL_FINAL:
mysql_add_foreign_final_paths(root, input_rel, output_rel,
(FinalPathExtraData *) extra);
break;
default:
elog(ERROR, "unexpected upper relation: %d", (int) stage);
break;
}
}
/*
* mysql_add_foreign_grouping_paths
* Add foreign path for grouping and/or aggregation.
*
* Given input_rel represents the underlying scan. The paths are added to the
* given grouped_rel.
*/
static void
mysql_add_foreign_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel,
RelOptInfo *grouped_rel,
GroupPathExtraData *extra)
{
Query *parse = root->parse;
MySQLFdwRelationInfo *fpinfo = grouped_rel->fdw_private;
ForeignPath *grouppath;
Cost startup_cost;
Cost total_cost;
double num_groups;
/* Nothing to be done, if there is no grouping or aggregation required. */
if (!parse->groupClause && !parse->groupingSets && !parse->hasAggs &&
!root->hasHavingQual)
return;
/* save the input_rel as outerrel in fpinfo */
fpinfo->outerrel = input_rel;
/* Assess if it is safe to push down aggregation and grouping. */
if (!mysql_foreign_grouping_ok(root, grouped_rel, extra->havingQual))
return;
/*
* TODO: Put accurate estimates here.
*
* Cost used here is minimum of the cost estimated for base and join
* relation.
*/
startup_cost = 15;
total_cost = 10 + startup_cost;
/* Estimate output tuples which should be same as number of groups */
#if PG_VERSION_NUM >= 140000
num_groups = estimate_num_groups(root,
get_sortgrouplist_exprs(root->parse->groupClause,
fpinfo->grouped_tlist),
input_rel->rows, NULL, NULL);
#else
num_groups = estimate_num_groups(root,
get_sortgrouplist_exprs(root->parse->groupClause,
fpinfo->grouped_tlist),
input_rel->rows, NULL);
#endif
/* Create and add foreign path to the grouping relation. */
#if PG_VERSION_NUM >= 170000
grouppath = create_foreign_upper_path(root,
grouped_rel,
grouped_rel->reltarget,
num_groups,
startup_cost,
total_cost,
NIL, /* no pathkeys */
NULL,
NIL, /* no fdw_restrictinfo list */
NIL); /* no fdw_private */
#else
grouppath = create_foreign_upper_path(root,
grouped_rel,
grouped_rel->reltarget,
num_groups,
startup_cost,
total_cost,
NIL, /* no pathkeys */
NULL,
NIL); /* no fdw_private */
#endif
/* Add generated path into grouped_rel by add_path(). */
add_path(grouped_rel, (Path *) grouppath);
}
/*
* mysql_get_useful_ecs_for_relation
* Determine which EquivalenceClasses might be involved in useful
* orderings of this relation.
*
* This function is in some respects a mirror image of the core function
* pathkeys_useful_for_merging: for a regular table, we know what indexes
* we have and want to test whether any of them are useful. For a foreign
* table, we don't know what indexes are present on the remote side but
* want to speculate about which ones we'd like to use if they existed.
*
* This function returns a list of potentially-useful equivalence classes,
* but it does not guarantee that an EquivalenceMember exists which contains
* Vars only from the given relation. For example, given ft1 JOIN t1 ON
* ft1.x + t1.x = 0, this function will say that the equivalence class
* containing ft1.x + t1.x is potentially useful. Supposing ft1 is remote and
* t1 is local (or on a different server), it will turn out that no useful
* ORDER BY clause can be generated. It's not our job to figure that out
* here; we're only interested in identifying relevant ECs.
*/
static List *
mysql_get_useful_ecs_for_relation(PlannerInfo *root, RelOptInfo *rel)
{
List *useful_eclass_list = NIL;
ListCell *lc;
Relids relids;
/*
* First, consider whether any active EC is potentially useful for a merge
* join against this relation.
*/
if (rel->has_eclass_joins)
{
foreach(lc, root->eq_classes)
{
EquivalenceClass *cur_ec = (EquivalenceClass *) lfirst(lc);
if (eclass_useful_for_merging(root, cur_ec, rel))
useful_eclass_list = lappend(useful_eclass_list, cur_ec);
}
}
/*
* Next, consider whether there are any non-EC derivable join clauses that
* are merge-joinable. If the joininfo list is empty, we can exit
* quickly.
*/
if (rel->joininfo == NIL)
return useful_eclass_list;
/* If this is a child rel, we must use the topmost parent rel to search. */
if (IS_OTHER_REL(rel))
{
Assert(!bms_is_empty(rel->top_parent_relids));
relids = rel->top_parent_relids;
}
else
relids = rel->relids;
/* Check each join clause in turn. */
foreach(lc, rel->joininfo)
{
RestrictInfo *restrictinfo = (RestrictInfo *) lfirst(lc);
/* Consider only mergejoinable clauses */
if (restrictinfo->mergeopfamilies == NIL)
continue;
/* Make sure we've got canonical ECs. */
update_mergeclause_eclasses(root, restrictinfo);
/*
* restrictinfo->mergeopfamilies != NIL is sufficient to guarantee
* that left_ec and right_ec will be initialized, per comments in
* distribute_qual_to_rels.
*
* We want to identify which side of this merge-joinable clause
* contains columns from the relation produced by this RelOptInfo. We
* test for overlap, not containment, because there could be extra
* relations on either side. For example, suppose we've got something
* like ((A JOIN B ON A.x = B.x) JOIN C ON A.y = C.y) LEFT JOIN D ON
* A.y = D.y. The input rel might be the joinrel between A and B, and
* we'll consider the join clause A.y = D.y. relids contains a
* relation not involved in the join class (B) and the equivalence
* class for the left-hand side of the clause contains a relation not
* involved in the input rel (C). Despite the fact that we have only
* overlap and not containment in either direction, A.y is potentially
* useful as a sort column.
*
* Note that it's even possible that relids overlaps neither side of
* the join clause. For example, consider A LEFT JOIN B ON A.x = B.x
* AND A.x = 1. The clause A.x = 1 will appear in B's joininfo list,
* but overlaps neither side of B. In that case, we just skip this
* join clause, since it doesn't suggest a useful sort order for this
* relation.
*/
if (bms_overlap(relids, restrictinfo->right_ec->ec_relids))
useful_eclass_list = list_append_unique_ptr(useful_eclass_list,
restrictinfo->right_ec);
else if (bms_overlap(relids, restrictinfo->left_ec->ec_relids))
useful_eclass_list = list_append_unique_ptr(useful_eclass_list,
restrictinfo->left_ec);
}
return useful_eclass_list;
}
/*
* mysql_get_useful_pathkeys_for_relation
* Determine which orderings of a relation might be useful.
*
* Getting data in sorted order can be useful either because the requested
* order matches the final output ordering for the overall query we're
* planning, or because it enables an efficient merge join. Here, we try
* to figure out which pathkeys to consider.
*/
static List *
mysql_get_useful_pathkeys_for_relation(PlannerInfo *root, RelOptInfo *rel)
{
List *useful_pathkeys_list = NIL;
List *useful_eclass_list;
MySQLFdwRelationInfo *fpinfo = (MySQLFdwRelationInfo *) rel->fdw_private;
EquivalenceClass *query_ec = NULL;
ListCell *lc;
/*
* Pushing the query_pathkeys to the remote server is always worth
* considering, because it might let us avoid a local sort.
*/
fpinfo->qp_is_pushdown_safe = false;
if (root->query_pathkeys)
{
bool query_pathkeys_ok = true;
foreach(lc, root->query_pathkeys)
{
PathKey *pathkey = (PathKey *) lfirst(lc);
/*
* The planner and executor don't have any clever strategy for
* taking data sorted by a prefix of the query's pathkeys and
* getting it to be sorted by all of those pathkeys. We'll just
* end up resorting the entire data set. So, unless we can push
* down all of the query pathkeys, forget it.
*/
if (!mysql_is_foreign_pathkey(root, rel, pathkey))
{
query_pathkeys_ok = false;
break;
}
}
if (query_pathkeys_ok)
{
useful_pathkeys_list = list_make1(list_copy(root->query_pathkeys));
fpinfo->qp_is_pushdown_safe = true;
}
}
/* Get the list of interesting EquivalenceClasses. */
useful_eclass_list = mysql_get_useful_ecs_for_relation(root, rel);
/* Extract unique EC for query, if any, so we don't consider it again. */
if (list_length(root->query_pathkeys) == 1)
{
PathKey *query_pathkey = linitial(root->query_pathkeys);
query_ec = query_pathkey->pk_eclass;
}
/*
* As a heuristic, the only pathkeys we consider here are those of length
* one. It's surely possible to consider more, but since each one we
* choose to consider will generate a round-trip to the remote side, we
* need to be a bit cautious here. It would sure be nice to have a local
* cache of information about remote index definitions...
*/
foreach(lc, useful_eclass_list)
{
EquivalenceMember *em = NULL;
EquivalenceClass *cur_ec = lfirst(lc);
PathKey *pathkey;
/* If redundant with what we did above, skip it. */
if (cur_ec == query_ec)
continue;
em = mysql_find_em_for_rel(root, cur_ec, rel);
/* Can't push down the sort if the EC's opfamily is not shippable. */
if (!mysql_is_builtin(linitial_oid(cur_ec->ec_opfamilies)))
continue;
/* Looks like we can generate a pathkey, so let's do it. */
pathkey = make_canonical_pathkey(root, cur_ec,
linitial_oid(cur_ec->ec_opfamilies),
BTLessStrategyNumber,
false);
/* Check for sort operator pushability. */
if (mysql_get_sortby_direction_string(em, pathkey) == NULL)
continue;
useful_pathkeys_list = lappend(useful_pathkeys_list,
list_make1(pathkey));
}
return useful_pathkeys_list;
}
/*
* mysql_add_paths_with_pathkeys
* Add path with root->query_pathkeys if that's pushable.
*
* Pushing down query_pathkeys to the foreign server might let us avoid a
* local sort.
*/
#if PG_VERSION_NUM >= 170000
static void
mysql_add_paths_with_pathkeys(PlannerInfo *root, RelOptInfo *rel,
Path *epq_path, Cost base_startup_cost,
Cost base_total_cost, List *restrictlist)
#else
static void
mysql_add_paths_with_pathkeys(PlannerInfo *root, RelOptInfo *rel,
Path *epq_path, Cost base_startup_cost,
Cost base_total_cost)
#endif
{
ListCell *lc;
List *useful_pathkeys_list = NIL; /* List of all pathkeys */
useful_pathkeys_list = mysql_get_useful_pathkeys_for_relation(root, rel);
/* Create one path for each set of pathkeys we found above. */
foreach(lc, useful_pathkeys_list)
{
Cost startup_cost;
Cost total_cost;
List *useful_pathkeys = lfirst(lc);
Path *sorted_epq_path;
/* TODO put accurate estimates. */
startup_cost = base_startup_cost * DEFAULT_MYSQL_SORT_MULTIPLIER;
total_cost = base_total_cost * DEFAULT_MYSQL_SORT_MULTIPLIER;
/*
* The EPQ path must be at least as well sorted as the path itself, in
* case it gets used as input to a mergejoin.
*/
sorted_epq_path = epq_path;
if (sorted_epq_path != NULL &&
!pathkeys_contained_in(useful_pathkeys,
sorted_epq_path->pathkeys))
sorted_epq_path = (Path *)
create_sort_path(root,
rel,
sorted_epq_path,
useful_pathkeys,
-1.0);
if (IS_SIMPLE_REL(rel))
#if PG_VERSION_NUM >= 170000
add_path(rel, (Path *)
create_foreignscan_path(root, rel,
NULL,
rel->rows,
startup_cost,
total_cost,
useful_pathkeys,
rel->lateral_relids,
sorted_epq_path,
NIL, /* no fdw_restrictinfo list */
NIL)); /* no fdw_private list */
#else
add_path(rel, (Path *)
create_foreignscan_path(root, rel,
NULL,
rel->rows,
startup_cost,
total_cost,
useful_pathkeys,
rel->lateral_relids,
sorted_epq_path,
NIL)); /* no fdw_private list */
#endif
else
#if PG_VERSION_NUM >= 170000
add_path(rel, (Path *)
create_foreign_join_path(root, rel,
NULL,
rel->rows,
startup_cost,
total_cost,
useful_pathkeys,
rel->lateral_relids,
sorted_epq_path,
restrictlist,
NIL)); /* no fdw_private */
#else
add_path(rel, (Path *)
create_foreign_join_path(root, rel,
NULL,
rel->rows,
startup_cost,
total_cost,
useful_pathkeys,
rel->lateral_relids,
sorted_epq_path,
NIL)); /* no fdw_private */
#endif
}
}
/*
* Given an EquivalenceClass and a foreign relation, find an EC member
* that can be used to sort the relation remotely according to a pathkey
* using this EC.
*
* If there is more than one suitable candidate, return an arbitrary
* one of them. If there is none, return NULL.
*
* This checks that the EC member expression uses only Vars from the given
* rel and is shippable. Caller must separately verify that the pathkey's
* ordering operator is shippable.
*/
EquivalenceMember *
mysql_find_em_for_rel(PlannerInfo *root, EquivalenceClass *ec, RelOptInfo *rel)
{
ListCell *lc;
foreach(lc, ec->ec_members)
{
EquivalenceMember *em = (EquivalenceMember *) lfirst(lc);
/*
* Note we require !bms_is_empty, else we'd accept constant
* expressions which are not suitable for the purpose.
*/
if (bms_is_subset(em->em_relids, rel->relids) &&
!bms_is_empty(em->em_relids) &&
mysql_is_foreign_expr(root, rel, em->em_expr, true))
return em;
}
return NULL;
}
/*
* mysql_add_foreign_ordered_paths
* Add foreign paths for performing the final sort remotely.
*
* Given input_rel contains the source-data Paths. The paths are added to the
* given ordered_rel.
*/
static void
mysql_add_foreign_ordered_paths(PlannerInfo *root, RelOptInfo *input_rel,
RelOptInfo *ordered_rel)
{
Query *parse = root->parse;
MySQLFdwRelationInfo *ifpinfo = input_rel->fdw_private;
MySQLFdwRelationInfo *fpinfo = ordered_rel->fdw_private;
double rows;
Cost startup_cost;
Cost total_cost;
List *fdw_private;
ForeignPath *ordered_path;
ListCell *lc;
/* Shouldn't get here unless the query has ORDER BY */
Assert(parse->sortClause);
/* We don't support cases where there are any SRFs in the targetlist */
if (parse->hasTargetSRFs)
return;
/* Save the input_rel as outerrel in fpinfo */
fpinfo->outerrel = input_rel;
/*
* If the input_rel is a base or join relation, we would already have
* considered pushing down the final sort to the remote server when
* creating pre-sorted foreign paths for that relation, because the
* query_pathkeys is set to the root->sort_pathkeys in that case (see
* standard_qp_callback()).
*/
if (input_rel->reloptkind == RELOPT_BASEREL ||
input_rel->reloptkind == RELOPT_JOINREL)
{
Assert(root->query_pathkeys == root->sort_pathkeys);
/* Safe to push down if the query_pathkeys is safe to push down */
fpinfo->pushdown_safe = ifpinfo->qp_is_pushdown_safe;
return;
}
/* The input_rel should be a grouping relation */
Assert(input_rel->reloptkind == RELOPT_UPPER_REL &&
ifpinfo->stage == UPPERREL_GROUP_AGG);
/*
* We try to create a path below by extending a simple foreign path for
* the underlying grouping relation to perform the final sort remotely,
* which is stored into the fdw_private list of the resulting path.
*/
/* Assess if it is safe to push down the final sort */
foreach(lc, root->sort_pathkeys)
{
PathKey *pathkey = (PathKey *) lfirst(lc);
EquivalenceClass *pathkey_ec = pathkey->pk_eclass;
EquivalenceMember *em;
/*
* mysql_is_foreign_expr would detect volatile expressions as well,
* but checking ec_has_volatile here saves some cycles.
*/
if (pathkey_ec->ec_has_volatile)
return;
/*
* The EC must contain a shippable EM that is computed in input_rel's
* reltarget, else we can't push down the sort.
*/
em = mysql_find_em_for_rel_target(root, pathkey_ec, input_rel);
if (mysql_get_sortby_direction_string(em, pathkey) == NULL)
return;
}
/* Safe to push down */
fpinfo->pushdown_safe = true;
/* TODO: Put accurate estimates */
startup_cost = 15;
total_cost = 10 + startup_cost;
rows = 10;
/*
* Build the fdw_private list that will be used by mysqlGetForeignPlan.
* Items in the list must match order in enum FdwPathPrivateIndex.
*/
fdw_private = list_make2(makeInteger(true), makeInteger(false));
/* Create foreign ordering path */
#if PG_VERSION_NUM >= 170000
ordered_path = create_foreign_upper_path(root,
input_rel,
root->upper_targets[UPPERREL_ORDERED],
rows,
startup_cost,
total_cost,
root->sort_pathkeys,
NULL, /* no extra plan */
NIL, /* no fdw_restrictinfo list */
fdw_private);
#else
ordered_path = create_foreign_upper_path(root,
input_rel,
root->upper_targets[UPPERREL_ORDERED],
rows,
startup_cost,
total_cost,
root->sort_pathkeys,
NULL, /* no extra plan */
fdw_private);
#endif
/* and add it to the ordered_rel */
add_path(ordered_rel, (Path *) ordered_path);
}
/*
* mysql_find_em_for_rel_target
*
* Find an EquivalenceClass member that is to be computed as a sort column
* in the given rel's reltarget, and is shippable.
*
* If there is more than one suitable candidate, return an arbitrary
* one of them. If there is none, return NULL.
*
* This checks that the EC member expression uses only Vars from the given
* rel and is shippable. Caller must separately verify that the pathkey's
* ordering operator is shippable.
*/
EquivalenceMember *
mysql_find_em_for_rel_target(PlannerInfo *root, EquivalenceClass *ec,
RelOptInfo *rel)
{
PathTarget *target = rel->reltarget;
ListCell *lc1;
int i;
i = 0;
foreach(lc1, target->exprs)
{
Expr *expr = (Expr *) lfirst(lc1);
Index sgref = get_pathtarget_sortgroupref(target, i);
ListCell *lc2;
/* Ignore non-sort expressions */
if (sgref == 0 ||
get_sortgroupref_clause_noerr(sgref,
root->parse->sortClause) == NULL)
{
i++;
continue;
}
/* We ignore binary-compatible relabeling on both ends */
while (expr && IsA(expr, RelabelType))
expr = ((RelabelType *) expr)->arg;
/* Locate an EquivalenceClass member matching this expr, if any */
foreach(lc2, ec->ec_members)
{
EquivalenceMember *em = (EquivalenceMember *) lfirst(lc2);
Expr *em_expr;
/* Don't match constants */
if (em->em_is_const)
continue;
/* Ignore child members */
if (em->em_is_child)
continue;
/* Match if same expression (after stripping relabel) */
em_expr = em->em_expr;
while (em_expr && IsA(em_expr, RelabelType))
em_expr = ((RelabelType *) em_expr)->arg;
if (!equal(em_expr, expr))
continue;
/* Check that expression (including relabels!) is shippable */
if (mysql_is_foreign_expr(root, rel, em->em_expr, true))
return em;
}
i++;
}
return NULL;
}
/*
* mysql_add_foreign_final_paths
* Add foreign paths for performing the final processing remotely.
*
* Given input_rel contains the source-data Paths. The paths are added to the
* given final_rel.
*/
static void
mysql_add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel,
RelOptInfo *final_rel, FinalPathExtraData *extra)
{
Query *parse = root->parse;
MySQLFdwRelationInfo *ifpinfo = (MySQLFdwRelationInfo *) input_rel->fdw_private;
MySQLFdwRelationInfo *fpinfo = (MySQLFdwRelationInfo *) final_rel->fdw_private;
bool has_final_sort = false;
List *pathkeys = NIL;
double rows;
Cost startup_cost;
Cost total_cost;
List *fdw_private;
ForeignPath *final_path;
/*
* Currently, we only support this for SELECT commands
*/
if (parse->commandType != CMD_SELECT)
return;
/*
* No work if there is no FOR UPDATE/SHARE clause and if there is no need
* to add a LIMIT node
*/
if (!parse->rowMarks && !extra->limit_needed)
return;
/* We don't support cases where there are any SRFs in the targetlist */
if (parse->hasTargetSRFs)
return;
/* MySQL does not support only OFFSET clause in a SELECT command. */
if (parse->limitOffset && !parse->limitCount)
return;
/* Save the input_rel as outerrel in fpinfo */
fpinfo->outerrel = input_rel;
/*
* If there is no need to add a LIMIT node, there might be a ForeignPath
* in the input_rel's pathlist that implements all behavior of the query.
* Note: we would already have accounted for the query's FOR UPDATE/SHARE
* (if any) before we get here.
*/
if (!extra->limit_needed)
{
ListCell *lc;
Assert(parse->rowMarks);
/*
* Grouping and aggregation are not supported with FOR UPDATE/SHARE,
* so the input_rel should be a base, join, or ordered relation; and
* if it's an ordered relation, its input relation should be a base or
* join relation.
*/
Assert(input_rel->reloptkind == RELOPT_BASEREL ||
input_rel->reloptkind == RELOPT_JOINREL ||
(input_rel->reloptkind == RELOPT_UPPER_REL &&
ifpinfo->stage == UPPERREL_ORDERED &&
(ifpinfo->outerrel->reloptkind == RELOPT_BASEREL ||
ifpinfo->outerrel->reloptkind == RELOPT_JOINREL)));
foreach(lc, input_rel->pathlist)
{
Path *path = (Path *) lfirst(lc);
/*
* apply_scanjoin_target_to_paths() uses create_projection_path()
* to adjust each of its input paths if needed, whereas
* create_ordered_paths() uses apply_projection_to_path() to do
* that. So the former might have put a ProjectionPath on top of
* the ForeignPath; look through ProjectionPath and see if the
* path underneath it is ForeignPath.
*/
if (IsA(path, ForeignPath) ||
(IsA(path, ProjectionPath) &&
IsA(((ProjectionPath *) path)->subpath, ForeignPath)))
{
/*
* Create foreign final path; this gets rid of a
* no-longer-needed outer plan (if any), which makes the
* EXPLAIN output look cleaner
*/
#if PG_VERSION_NUM >= 170000
final_path = create_foreign_upper_path(root,
path->parent,
path->pathtarget,
path->rows,
path->startup_cost,
path->total_cost,
path->pathkeys,
NULL, /* no extra plan */
NIL, /* no fdw_restrictinfo list */
NIL); /* no fdw_private */
#else
final_path = create_foreign_upper_path(root,
path->parent,
path->pathtarget,
path->rows,
path->startup_cost,
path->total_cost,
path->pathkeys,
NULL, /* no extra plan */
NIL); /* no fdw_private */
#endif
/* and add it to the final_rel */
add_path(final_rel, (Path *) final_path);
/* Safe to push down */
fpinfo->pushdown_safe = true;
return;
}
}
/*
* If we get here it means no ForeignPaths; since we would already
* have considered pushing down all operations for the query to the
* remote server, give up on it.
*/
return;
}
Assert(extra->limit_needed);
/*
* If the input_rel is an ordered relation, replace the input_rel with its
* input relation
*/
if (input_rel->reloptkind == RELOPT_UPPER_REL &&
ifpinfo->stage == UPPERREL_ORDERED)
{
input_rel = ifpinfo->outerrel;
ifpinfo = (MySQLFdwRelationInfo *) input_rel->fdw_private;
has_final_sort = true;
pathkeys = root->sort_pathkeys;
}
/* The input_rel should be a base, join, or grouping relation */
Assert(input_rel->reloptkind == RELOPT_BASEREL ||
input_rel->reloptkind == RELOPT_JOINREL ||
(input_rel->reloptkind == RELOPT_UPPER_REL &&
ifpinfo->stage == UPPERREL_GROUP_AGG));
/*
* We try to create a path below by extending a simple foreign path for
* the underlying base, join, or grouping relation to perform the final
* sort (if has_final_sort) and the LIMIT restriction remotely, which is
* stored into the fdw_private list of the resulting path. (We
* re-estimate the costs of sorting the underlying relation, if
* has_final_sort.)
*/
/*
* Assess if it is safe to push down the LIMIT and OFFSET to the remote
* server
*/
/*
* If the underlying relation has any local conditions, the LIMIT/OFFSET
* cannot be pushed down.
*/
if (ifpinfo->local_conds)
return;
/*
* Support only Const and Param nodes as expressions are NOT suported.
* MySQL doesn't support LIMIT/OFFSET NULL/ALL syntax, so check for the
* same. If limitCount const node is null then do not pushdown
* limit/offset clause and if limitOffset const node is null and
* limitCount const node is not null then pushdown only limit clause.
*/
if (parse->limitCount)
{
if (nodeTag(parse->limitCount) != T_Const &&
nodeTag(parse->limitCount) != T_Param)
return;
if (nodeTag(parse->limitCount) == T_Const &&
((Const *) parse->limitCount)->constisnull)
return;
}
if (parse->limitOffset)
{
if (nodeTag(parse->limitOffset) != T_Const &&
nodeTag(parse->limitOffset) != T_Param)
return;
}
/* Safe to push down */
fpinfo->pushdown_safe = true;
/* TODO: Put accurate estimates */
startup_cost = 1;
total_cost = 1 + startup_cost;
rows = 1;
/*
* Build the fdw_private list that will be used by mysqlGetForeignPlan.
* Items in the list must match order in enum FdwPathPrivateIndex.
*/
fdw_private = list_make2(makeInteger(has_final_sort),
makeInteger(extra->limit_needed));
/*
* Create foreign final path; this gets rid of a no-longer-needed outer
* plan (if any), which makes the EXPLAIN output look cleaner
*/
#if PG_VERSION_NUM >= 170000
final_path = create_foreign_upper_path(root,
input_rel,
root->upper_targets[UPPERREL_FINAL],
rows,
startup_cost,
total_cost,
pathkeys,
NULL, /* no extra plan */
NIL, /* no fdw_restrictinfo list */
fdw_private);
#else
final_path = create_foreign_upper_path(root,
input_rel,
root->upper_targets[UPPERREL_FINAL],
rows,
startup_cost,
total_cost,
pathkeys,
NULL, /* no extra plan */
fdw_private);
#endif
/* and add it to the final_rel */
add_path(final_rel, (Path *) final_path);
}
#if PG_VERSION_NUM >= 140000
/*
* mysqlExecForeignTruncate
* Truncate one or more foreign tables.
*/
static void
mysqlExecForeignTruncate(List *rels,
DropBehavior behavior,
bool restart_seqs)
{
Oid serverid = InvalidOid;
ForeignServer *server = NULL;
UserMapping *user = NULL;
MYSQL *conn = NULL;
StringInfoData sql;
ListCell *lc;
bool server_truncatable = true;
mysql_opt *options;
/* CASCADE option is not supported as we don't have such option in MySQL */
if (behavior == DROP_CASCADE)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("CASCADE option in TRUNCATE is not supported by this FDW")));
/*
* By default, all mysql_fdw foreign tables are assumed truncatable. This
* can be overridden by a per-server setting, which in turn can be
* overridden by a per-table setting.
*/
foreach(lc, rels)
{
Relation rel = lfirst(lc);
ForeignTable *table = GetForeignTable(RelationGetRelid(rel));
ListCell *cell;
bool truncatable;
/*
* First time through, determine whether the foreign server allows
* truncates. Since all specified foreign tables are assumed to belong
* to the same foreign server, this result can be used for other
* foreign tables.
*/
if (!OidIsValid(serverid))
{
serverid = table->serverid;
server = GetForeignServer(serverid);
foreach(cell, server->options)
{
DefElem *defel = (DefElem *) lfirst(cell);
if (strcmp(defel->defname, "truncatable") == 0)
{
server_truncatable = defGetBoolean(defel);
break;
}
}
}
/*
* Confirm that all specified foreign tables belong to the same
* foreign server.
*/
Assert(table->serverid == serverid);
/* Determine whether this foreign table allows truncations */
truncatable = server_truncatable;
foreach(cell, table->options)
{
DefElem *defel = (DefElem *) lfirst(cell);
if (strcmp(defel->defname, "truncatable") == 0)
{
truncatable = defGetBoolean(defel);
break;
}
}
if (!truncatable)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("foreign table \"%s\" does not allow truncates",
RelationGetRelationName(rel))));
}
Assert(OidIsValid(serverid));
/*
* Get connection to the foreign server. Connection manager will
* establish new connection if necessary.
*/
user = GetUserMapping(GetUserId(), serverid);
options = mysql_get_options(serverid, false);
conn = mysql_get_connection(server, user, options);
/* Construct the TRUNCATE command string */
foreach(lc, rels)
{
Relation rel = lfirst(lc);
initStringInfo(&sql);
mysql_deparse_truncate_sql(&sql, rel);
/* Issue the TRUNCATE command to remote server */
if (mysql_query(conn, sql.data) != 0)
mysql_error_print(conn);
pfree(sql.data);
}
}
#endif
#if PG_VERSION_NUM >= 140000
/*
* mysql_remove_quotes
*
* Return the string by replacing back-tick (`) characters with double quotes
* ("). If there are two consecutive back-ticks, the first is the escape
* character which is removed. Caller should free the allocated memory.
*/
static char *
mysql_remove_quotes(char *s1)
{
int i,
j;
char *s2;
if (s1 == NULL)
return NULL;
s2 = palloc0(strlen(s1) * 2);
for (i = 0, j = 0; s1[i] != '\0'; i++, j++)
{
if (s1[i] == '`' && s1[i + 1] == '`')
{
s2[j] = '`';
i++;
}
else if (s1[i] == '`')
s2[j] = '"';
else if (s1[i] == '"')
{
/* Double the inner double quotes for PG compatibility. */
s2[j] = '"';
s2[j + 1] = '"';
j++;
}
else
s2[j] = s1[i];
}
s2[j] = '\0';
return s2;
}
#endif
/*
* mysql_display_pushdown_list
* Displays all records from the config file. Each record will return as a
* single row.
*
* If it gets the argument as true, then it will rebuild the hash table and
* then display it. Also, if this function is executing for the first time in
* a session before any other mysql_fdw statement, then we by default build the
* hash and display it.
*/
Datum
mysql_display_pushdown_list(PG_FUNCTION_ARGS)
{
#define DISPLAY_PUSHDOWN_LIST_COLS 2
FuncCallContext *funcctx;
List *objectList;
if (SRF_IS_FIRSTCALL())
{
bool reload = PG_GETARG_BOOL(0);
TupleDesc tupdesc;
MemoryContext oldcontext;
funcctx = SRF_FIRSTCALL_INIT();
/* Switch context when allocating stuff to be used in later calls */
oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
/* Fetch the object list */
objectList = mysql_get_configured_pushdown_objects(reload);
/* Total number of tuples to be returned */
funcctx->max_calls = list_length(objectList);
funcctx->user_fctx = (void *) objectList;
/* Build a tuple descriptor for our result type */
if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE)
elog(ERROR, "return type must be a row type");
if (tupdesc->natts != DISPLAY_PUSHDOWN_LIST_COLS)
elog(ERROR, "incorrect number of output arguments");
funcctx->tuple_desc = BlessTupleDesc(tupdesc);
/* Return to original context when allocating transient memory */
MemoryContextSwitchTo(oldcontext);
}
funcctx = SRF_PERCALL_SETUP();
/* Get the saved state */
objectList = (List *) funcctx->user_fctx;
if (funcctx->call_cntr < funcctx->max_calls)
{
HeapTuple tuple;
Datum values[DISPLAY_PUSHDOWN_LIST_COLS];
bool nulls[DISPLAY_PUSHDOWN_LIST_COLS] = {false};
FDWPushdownObject *object;
object = lfirst(list_nth_cell(objectList, funcctx->call_cntr));
if (object->objectType == OBJECT_FUNCTION)
{
char *name = format_procedure_qualified(object->objectId);
values[0] = PointerGetDatum(cstring_to_text("ROUTINE"));
values[1] = PointerGetDatum(cstring_to_text(name));
}
else if (object->objectType == OBJECT_OPERATOR)
{
char *name = format_operator_qualified(object->objectId);
values[0] = PointerGetDatum(cstring_to_text("OPERATOR"));
values[1] = PointerGetDatum(cstring_to_text(name));
}
else
elog(ERROR, "invalid object type in pushdown config file");
/* Build and return the next result tuple. */
tuple = heap_form_tuple(funcctx->tuple_desc, values, nulls);
SRF_RETURN_NEXT(funcctx, HeapTupleGetDatum(tuple));
}
/* Done */
SRF_RETURN_DONE(funcctx);
}
/*
* mysql_get_sortby_direction_string
* Fetch the operator oid from the operator family and datatype, and check
* whether the operator is the default for sort expr's datatype. If it is,
* then return ASC or DESC accordingly; NULL otherwise.
*/
char *
mysql_get_sortby_direction_string(EquivalenceMember *em, PathKey *pathkey)
{
Oid oprid;
TypeCacheEntry *typentry;
if (em == NULL)
return NULL;
/* Can't push down the sort if pathkey's opfamily is not shippable. */
if (!mysql_is_builtin(pathkey->pk_opfamily))
return NULL;
oprid = get_opfamily_member(pathkey->pk_opfamily, em->em_datatype,
em->em_datatype, pathkey->pk_strategy);
if (!OidIsValid(oprid))
elog(ERROR, "missing operator %d(%u,%u) in opfamily %u",
pathkey->pk_strategy, em->em_datatype, em->em_datatype,
pathkey->pk_opfamily);
/* Can't push down the sort if the operator is not shippable. */
if (!mysql_check_remote_pushability(oprid))
return NULL;
/*
* See whether the operator is default < or > for sort expr's datatype.
* Here we need to use the expression's actual type to discover whether
* the desired operator will be the default or not.
*/
typentry = lookup_type_cache(exprType((Node *) em->em_expr),
TYPECACHE_LT_OPR | TYPECACHE_GT_OPR);
if (oprid == typentry->lt_opr)
return "ASC";
else if (oprid == typentry->gt_opr)
return "DESC";
return NULL;
}
#if PG_VERSION_NUM >= 160000
/*
* mysql_tlist_member_match_var
* Finds the (first) member of the given tlist whose Var is same as the
* given Var. Result is NULL if no such member.
*/
static TargetEntry *
mysql_tlist_member_match_var(Var *var, List *targetlist)
{
ListCell *temp;
foreach(temp, targetlist)
{
TargetEntry *tlentry = (TargetEntry *) lfirst(temp);
Var *tlvar = (Var *) tlentry->expr;
if (!tlvar || !IsA(tlvar, Var))
continue;
if (var->varno == tlvar->varno &&
var->varattno == tlvar->varattno &&
var->varlevelsup == tlvar->varlevelsup &&
var->vartype == tlvar->vartype)
return tlentry;
}
return NULL;
}
/*
* mysql_varlist_append_unique_var
* Append var to var list, but only if it isn't already in the list.
*
* Whether a var is already a member of list is determined using varno and
* varattno.
*/
static List *
mysql_varlist_append_unique_var(List *varlist, Var *var)
{
ListCell *lc;
foreach(lc, varlist)
{
Var *tlvar = (Var *) lfirst(lc);
if (IsA(tlvar, Var) &&
tlvar->varno == var->varno &&
tlvar->varattno == var->varattno)
return varlist;
}
return lappend(varlist, var);
}
#endif
|