summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/deparse.c
AgeCommit message (Expand)Author
2023-02-09Fix various typos in code and testsMichael Paquier
2023-01-30Make Vars be outer-join-aware.Tom Lane
2023-01-18Remove redundant grouping and DISTINCT columns.Tom Lane
2023-01-07Check relkind before using TABLESAMPLE in postgres_fdwTomas Vondra
2023-01-02Update copyright for 2023Bruce Momjian
2022-12-30Sample postgres_fdw tables remotely during ANALYZETomas Vondra
2022-10-07Fix final warnings produced by -Wshadow=compatible-localDavid Rowley
2022-09-22Harmonize parameter names in contrib code.Peter Geoghegan
2022-07-17postgres_fdw: be more wary about shippability of reg* constants.Tom Lane
2022-03-31Fix postgres_fdw to check shippability of sort clauses properly.Tom Lane
2022-01-08Update copyright for 2022Bruce Momjian
2021-11-12postgres_fdw: suppress casts on constants in limited cases.Tom Lane
2021-08-05postgres_fdw: Fix issues with generated columns in foreign tables.Etsuro Fujita
2021-07-30In postgres_fdw, allow CASE expressions to be pushed to the remote server.Tom Lane
2021-05-12Initial pgindent and pgperltidy run for v14.Tom Lane
2021-04-27Don't pass "ONLY" options specified in TRUNCATE to foreign data wrapper.Fujii Masao
2021-04-08Allow TRUNCATE command to truncate foreign tables.Fujii Masao
2021-03-31Rework planning and execution of UPDATE and DELETE.Tom Lane
2021-01-20Implement support for bulk inserts in postgres_fdwTomas Vondra
2021-01-02Update copyright for 2021Bruce Momjian
2020-12-09Support subscripting of arbitrary types, not only arrays.Tom Lane
2020-09-17Remove support for postfix (right-unary) operators.Tom Lane
2020-01-26In postgres_fdw, don't try to ship MULTIEXPR updates to remote server.Tom Lane
2020-01-01Update copyrights for 2020Bruce Momjian
2019-10-24Make the order of the header file includes consistent in contrib modules.Amit Kapila
2019-08-12Rationalize use of list_concat + list_copy combinations.Tom Lane
2019-07-22Use appendBinaryStringInfo in more places where the length is knownDavid Rowley
2019-07-15Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane
2019-07-04Use appendStringInfoString and appendPQExpBufferStr where possibleDavid Rowley
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-04-27Avoid postgres_fdw crash for a targetlist entry that's just a Param.Tom Lane
2019-04-02postgres_fdw: Perform the (FINAL, NULL) upperrel operations remotely.Etsuro Fujita
2019-04-02postgres_fdw: Perform the (ORDERED, NULL) upperrel operations remotely.Etsuro Fujita
2019-02-01Renaming for new subscripting mechanismAlvaro Herrera
2019-01-29Refactor planner's header files.Tom Lane
2019-01-21Replace uses of heap_open et al with the corresponding table_* function.Andres Freund
2019-01-21Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-07-08Fix WITH CHECK OPTION on views referencing postgres_fdw tables.Jeff Davis
2018-07-01Use optimized bitmap set function for membership test in postgres_fdwMichael Paquier
2018-05-01Fix interaction of foreign tuple routing with remote triggers.Robert Haas
2018-03-01Fix format_type() to restore its old behavior.Tom Lane
2018-02-19Remove bogus "extern" annotations on function definitions.Tom Lane
2018-02-17Refactor format_type APIs to be more modularAlvaro Herrera
2018-02-12get_relid_attribute_name is dead, long live get_attnameAlvaro Herrera
2018-02-07postgres_fdw: Push down UPDATE/DELETE joins to remote servers.Robert Haas
2018-01-12Fix postgres_fdw to cope with duplicate GROUP BY entries.Tom Lane
2018-01-03Update copyright for 2018Bruce Momjian
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund