forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitaa769f8

Etsuro Fujita
postgres_fdw: Fix issues with generated columns in foreign tables.
postgres_fdw imported generated columns from the remote tables as plaincolumns, and caused failures like "ERROR: cannot insert a non-DEFAULTvalue into column "foo"" when inserting into the foreign tables, as ittried to insert values into the generated columns. To fix, we do thefollowing under the assumption that generated columns in a postgres_fdwforeign table are defined so that they represent generated columns inthe underlying remote table:* Send DEFAULT for the generated columns to the foreign server on insert or update, not generated column values computed on the local server.* Add to postgresImportForeignSchema() an option "import_generated" to include column generated expressions in the definitions of foreign tables imported from a foreign server. The option is true by default.The assumption seems reasonable, because that would make a query of thepostgres_fdw foreign table return values for the generated columns thatare consistent with the generated expression.While here, fix another issue in postgresImportForeignSchema(): it triedto include column generated expressions as column default expressions inthe foreign table definitions when the import_default option was enabled.Per bug #16631 from Daniel Cherniy. Back-patch to v12 where generatedcolumns were added.Discussion:https://postgr.es/m/16631-e929fe9db0ffc7cf%40postgresql.org1 parent93d573d commitaa769f8
File tree
6 files changed
+238
-38
lines changed- contrib/postgres_fdw
- expected
- sql
- doc/src/sgml
6 files changed
+238
-38
lines changedLines changed: 38 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1844 | 1844 |
| |
1845 | 1845 |
| |
1846 | 1846 |
| |
| 1847 | + | |
1847 | 1848 |
| |
1848 | 1849 |
| |
1849 | 1850 |
| |
| |||
1873 | 1874 |
| |
1874 | 1875 |
| |
1875 | 1876 |
| |
| 1877 | + | |
| 1878 | + | |
| 1879 | + | |
1876 | 1880 |
| |
1877 | 1881 |
| |
1878 | 1882 |
| |
1879 | 1883 |
| |
1880 |
| - | |
1881 |
| - | |
| 1884 | + | |
| 1885 | + | |
| 1886 | + | |
| 1887 | + | |
| 1888 | + | |
| 1889 | + | |
| 1890 | + | |
1882 | 1891 |
| |
1883 | 1892 |
| |
1884 | 1893 |
| |
| |||
1902 | 1911 |
| |
1903 | 1912 |
| |
1904 | 1913 |
| |
1905 |
| - | |
1906 |
| - | |
| 1914 | + | |
| 1915 | + | |
| 1916 | + | |
1907 | 1917 |
| |
1908 | 1918 |
| |
1909 |
| - | |
1910 |
| - | |
| 1919 | + | |
| 1920 | + | |
1911 | 1921 |
| |
1912 | 1922 |
| |
| 1923 | + | |
1913 | 1924 |
| |
1914 | 1925 |
| |
1915 | 1926 |
| |
| |||
1921 | 1932 |
| |
1922 | 1933 |
| |
1923 | 1934 |
| |
1924 |
| - | |
| 1935 | + | |
1925 | 1936 |
| |
1926 | 1937 |
| |
1927 | 1938 |
| |
1928 | 1939 |
| |
1929 | 1940 |
| |
1930 |
| - | |
| 1941 | + | |
1931 | 1942 |
| |
| 1943 | + | |
| 1944 | + | |
| 1945 | + | |
1932 | 1946 |
| |
1933 | 1947 |
| |
1934 | 1948 |
| |
1935 | 1949 |
| |
1936 |
| - | |
1937 |
| - | |
| 1950 | + | |
| 1951 | + | |
| 1952 | + | |
| 1953 | + | |
| 1954 | + | |
| 1955 | + | |
| 1956 | + | |
1938 | 1957 |
| |
1939 | 1958 |
| |
1940 | 1959 |
| |
| |||
1958 | 1977 |
| |
1959 | 1978 |
| |
1960 | 1979 |
| |
| 1980 | + | |
1961 | 1981 |
| |
1962 | 1982 |
| |
1963 | 1983 |
| |
| |||
1971 | 1991 |
| |
1972 | 1992 |
| |
1973 | 1993 |
| |
| 1994 | + | |
1974 | 1995 |
| |
1975 | 1996 |
| |
1976 | 1997 |
| |
1977 | 1998 |
| |
1978 | 1999 |
| |
1979 | 2000 |
| |
1980 |
| - | |
1981 |
| - | |
| 2001 | + | |
| 2002 | + | |
| 2003 | + | |
| 2004 | + | |
| 2005 | + | |
| 2006 | + | |
| 2007 | + | |
1982 | 2008 |
| |
1983 | 2009 |
| |
1984 | 2010 |
| |
|
Lines changed: 107 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6548 | 6548 |
| |
6549 | 6549 |
| |
6550 | 6550 |
| |
6551 |
| - | |
| 6551 | + | |
| 6552 | + | |
| 6553 | + | |
6552 | 6554 |
| |
6553 | 6555 |
| |
6554 | 6556 |
| |
6555 | 6557 |
| |
6556 | 6558 |
| |
| 6559 | + | |
| 6560 | + | |
| 6561 | + | |
| 6562 | + | |
| 6563 | + | |
| 6564 | + | |
| 6565 | + | |
| 6566 | + | |
| 6567 | + | |
| 6568 | + | |
| 6569 | + | |
6557 | 6570 |
| |
| 6571 | + | |
| 6572 | + | |
| 6573 | + | |
| 6574 | + | |
| 6575 | + | |
| 6576 | + | |
| 6577 | + | |
| 6578 | + | |
| 6579 | + | |
| 6580 | + | |
| 6581 | + | |
6558 | 6582 |
| |
6559 | 6583 |
| |
6560 | 6584 |
| |
| |||
6570 | 6594 |
| |
6571 | 6595 |
| |
6572 | 6596 |
| |
| 6597 | + | |
| 6598 | + | |
| 6599 | + | |
| 6600 | + | |
| 6601 | + | |
| 6602 | + | |
| 6603 | + | |
| 6604 | + | |
| 6605 | + | |
| 6606 | + | |
| 6607 | + | |
| 6608 | + | |
| 6609 | + | |
| 6610 | + | |
| 6611 | + | |
| 6612 | + | |
| 6613 | + | |
| 6614 | + | |
| 6615 | + | |
| 6616 | + | |
| 6617 | + | |
| 6618 | + | |
| 6619 | + | |
| 6620 | + | |
| 6621 | + | |
| 6622 | + | |
| 6623 | + | |
| 6624 | + | |
| 6625 | + | |
| 6626 | + | |
| 6627 | + | |
| 6628 | + | |
| 6629 | + | |
| 6630 | + | |
| 6631 | + | |
| 6632 | + | |
| 6633 | + | |
| 6634 | + | |
| 6635 | + | |
| 6636 | + | |
| 6637 | + | |
| 6638 | + | |
| 6639 | + | |
| 6640 | + | |
| 6641 | + | |
| 6642 | + | |
| 6643 | + | |
| 6644 | + | |
6573 | 6645 |
| |
6574 | 6646 |
| |
6575 | 6647 |
| |
| |||
8656 | 8728 |
| |
8657 | 8729 |
| |
8658 | 8730 |
| |
| 8731 | + | |
8659 | 8732 |
| |
8660 | 8733 |
| |
8661 | 8734 |
| |
| |||
8673 | 8746 |
| |
8674 | 8747 |
| |
8675 | 8748 |
| |
8676 |
| - | |
| 8749 | + | |
| 8750 | + | |
8677 | 8751 |
| |
8678 | 8752 |
| |
8679 | 8753 |
| |
| |||
8723 | 8797 |
| |
8724 | 8798 |
| |
8725 | 8799 |
| |
| 8800 | + | |
| 8801 | + | |
| 8802 | + | |
| 8803 | + | |
| 8804 | + | |
| 8805 | + | |
| 8806 | + | |
| 8807 | + | |
8726 | 8808 |
| |
8727 | 8809 |
| |
8728 | 8810 |
| |
| |||
8737 | 8819 |
| |
8738 | 8820 |
| |
8739 | 8821 |
| |
8740 |
| - | |
| 8822 | + | |
| 8823 | + | |
8741 | 8824 |
| |
8742 | 8825 |
| |
8743 | 8826 |
| |
| |||
8787 | 8870 |
| |
8788 | 8871 |
| |
8789 | 8872 |
| |
| 8873 | + | |
| 8874 | + | |
| 8875 | + | |
| 8876 | + | |
| 8877 | + | |
| 8878 | + | |
| 8879 | + | |
| 8880 | + | |
8790 | 8881 |
| |
8791 | 8882 |
| |
8792 |
| - | |
| 8883 | + | |
8793 | 8884 |
| |
8794 | 8885 |
| |
8795 | 8886 |
| |
| |||
8800 | 8891 |
| |
8801 | 8892 |
| |
8802 | 8893 |
| |
8803 |
| - | |
| 8894 | + | |
| 8895 | + | |
8804 | 8896 |
| |
8805 | 8897 |
| |
8806 | 8898 |
| |
| |||
8850 | 8942 |
| |
8851 | 8943 |
| |
8852 | 8944 |
| |
| 8945 | + | |
| 8946 | + | |
| 8947 | + | |
| 8948 | + | |
| 8949 | + | |
| 8950 | + | |
| 8951 | + | |
| 8952 | + | |
8853 | 8953 |
| |
8854 | 8954 |
| |
8855 | 8955 |
| |
| |||
8874 | 8974 |
| |
8875 | 8975 |
| |
8876 | 8976 |
| |
8877 |
| - | |
| 8977 | + | |
| 8978 | + | |
8878 | 8979 |
| |
8879 | 8980 |
| |
8880 | 8981 |
| |
|
0 commit comments
Comments
(0)