summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw
AgeCommit message (Expand)Author
2019-02-16Allow user control of CTE materialization, and change the default behavior.Tom Lane
2019-02-09Build out the planner support function infrastructure.Tom Lane
2019-02-07Split create_foreignscan_path() into three functions.Tom Lane
2019-02-01Renaming for new subscripting mechanismAlvaro Herrera
2019-01-29Rename nodes/relation.h to nodes/pathnodes.h.Tom Lane
2019-01-29Refactor planner's header files.Tom Lane
2019-01-29postgres_fdw: Fix test for cached costs in estimate_path_cost_size().Etsuro Fujita
2019-01-28In the planner, replace an empty FROM clause with a dummy RTE.Tom Lane
2019-01-24postgres_fdw: Account for tlist eval costs in estimate_path_cost_size().Etsuro Fujita
2019-01-23Fix misc typos in comments.Heikki Linnakangas
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-17postgres_fdw: Remove duplicate code in DML execution callback functions.Etsuro Fujita
2019-01-15Don't include heapam.h from others headers.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-12-23Disable WAL-skipping optimization for COPY on views and foreign tablesMichael Paquier
2018-12-13Create a separate oid range for oids assigned by genbki.pl.Andres Freund
2018-12-12Repair bogus EPQ plans generated for postgres_fdw foreign joins.Tom Lane
2018-12-04postgres_fdw: Improve cost and size estimation for aggregate pushdown.Etsuro Fujita
2018-11-28C comment: remove extra '*'Bruce Momjian
2018-11-23Add WL_EXIT_ON_PM_DEATH pseudo-event.Thomas Munro
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-15Rejigger materializing and fetching a HeapTuple from a slot.Andres Freund
2018-10-07Remove some unnecessary fields from Plan trees.Tom Lane
2018-10-04In the executor, use an array of pointers to access the rangetable.Tom Lane
2018-10-04Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund
2018-08-31Disable support for partitionwise joins in problematic cases.Etsuro Fujita
2018-08-28postgres_fdw: don't push ORDER BY with no vars (bug #15352)Andrew Gierth
2018-08-09Spell "partitionwise" consistently.Heikki Linnakangas
2018-07-29Provide separate header file for built-in float typesTomas Vondra
2018-07-22Deduplicate "invalid input syntax" messages for various types.Andres Freund
2018-07-14Fix hashjoin costing mistake introduced with inner_unique optimization.Tom Lane
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-06-30pgindent run prior to branchingAndrew Dunstan
2018-05-24Improve English wording of some other getObjectDescription() messages.Tom Lane
2018-05-16Pass the correct PlannerInfo to PlanForeignModify/PlanDirectModify.Robert Haas
2018-05-03Remove now-unnecessary cast.Robert Haas
2018-05-01Fix interaction of foreign tuple routing with remote triggers.Robert Haas
2018-04-26Post-feature-freeze pgindent run.Tom Lane
2018-04-20Change more places to be less trusting of RestrictInfo.is_pushed_down.Tom Lane
2018-04-12YA attempt to stabilize the results of the postgres_fdw regression test.Tom Lane
2018-04-06Allow insert and update tuple routing and COPY for foreign tables.Robert Haas
2018-04-06Refactor PgFdwModifyState creation/destruction into separate functions.Robert Haas
2018-04-03Prevent accidental linking of system-supplied copies of libpq.so etc.Tom Lane
2018-04-02postgres_fdw: Push down partition-wise aggregation.Robert Haas
2018-03-29Rewrite the code that applies scan/join targets to paths.Robert Haas
2018-03-22Improve style guideline compliance of assorted error-report messages.Tom Lane
2018-03-08Revert "Temporarily instrument postgres_fdw test to look for statistics chang...Tom Lane