summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/deparse.c
Commit message (Expand)AuthorAgeFilesLines
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Support subscripting of arbitrary types, not only arrays.Tom Lane2020-12-091-5/+10
* Remove support for postfix (right-unary) operators.Tom Lane2020-09-171-13/+6
* In postgres_fdw, don't try to ship MULTIEXPR updates to remote server.Tom Lane2020-01-261-0/+16
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Make the order of the header file includes consistent in contrib modules.Amit Kapila2019-10-241-3/+1
* Rationalize use of list_concat + list_copy combinations.Tom Lane2019-08-121-1/+1
* Use appendBinaryStringInfo in more places where the length is knownDavid Rowley2019-07-231-2/+2
* Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane2019-07-151-3/+3
* Use appendStringInfoString and appendPQExpBufferStr where possibleDavid Rowley2019-07-041-4/+4
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-32/+32
* Avoid postgres_fdw crash for a targetlist entry that's just a Param.Tom Lane2019-04-271-0/+49
* postgres_fdw: Perform the (FINAL, NULL) upperrel operations remotely.Etsuro Fujita2019-04-021-2/+35
* postgres_fdw: Perform the (ORDERED, NULL) upperrel operations remotely.Etsuro Fujita2019-04-021-7/+21
* Renaming for new subscripting mechanismAlvaro Herrera2019-02-011-15/+15
* Refactor planner's header files.Tom Lane2019-01-291-2/+1
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-211-6/+6
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-211-1/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-201-29/+6
* Fix WITH CHECK OPTION on views referencing postgres_fdw tables.Jeff Davis2018-07-081-11/+30
* Use optimized bitmap set function for membership test in postgres_fdwMichael Paquier2018-07-011-3/+3
* Fix interaction of foreign tuple routing with remote triggers.Robert Haas2018-05-011-33/+25
* Fix format_type() to restore its old behavior.Tom Lane2018-03-011-1/+1
* Remove bogus "extern" annotations on function definitions.Tom Lane2018-02-191-2/+2
* Refactor format_type APIs to be more modularAlvaro Herrera2018-02-171-4/+6
* get_relid_attribute_name is dead, long live get_attnameAlvaro Herrera2018-02-121-1/+1
* postgres_fdw: Push down UPDATE/DELETE joins to remote servers.Robert Haas2018-02-071-34/+184
* Fix postgres_fdw to cope with duplicate GROUP BY entries.Tom Lane2018-01-121-5/+12
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund2017-08-201-3/+3
* Fix up some misusage of appendStringInfo() and friendsPeter Eisentraut2017-08-151-16/+16
* Phase 3 of pgindent updates.Tom Lane2017-06-211-8/+8
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-171-8/+8
* Handle restriction clause lists more uniformly in postgres_fdw.Tom Lane2017-04-111-13/+16
* Improve castNode notation by introducing list-extraction-specific variants.Tom Lane2017-04-101-1/+1
* Abstract logic to allow for multiple kinds of child rels.Robert Haas2017-04-031-26/+16
* postgres_fdw: Push down FULL JOINs with restriction clauses.Robert Haas2017-03-161-14/+258
* Use the new castNode() macro in a number of places.Andres Freund2017-01-261-4/+1
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* postgres_fdw: Fix typo in comment.Robert Haas2016-11-011-1/+1
* Suppress unused-variable warning in non-assert builds.Tom Lane2016-10-261-2/+1
* postgres_fdw: Push down aggregates to remote servers.Robert Haas2016-10-211-67/+501
* Support OID system column in postgres_fdw.Heikki Linnakangas2016-08-261-7/+30
* postgres_fdw: Cosmetic cleanup.Robert Haas2016-08-241-2/+2
* Fix assorted fallout from IS [NOT] NULL patch.Tom Lane2016-07-281-3/+20
* Fix typo in comment.Fujii Masao2016-07-251-1/+1
* postgres_fdw: Remove schema-qualification from cast to text.Robert Haas2016-07-011-2/+2
* postgres_fdw: Fix incorrect NULL handling in join pushdown.Robert Haas2016-06-241-4/+4
* postgres_fdw: Remove useless return statement.Robert Haas2016-06-241-1/+0