]> granicus.if.org Git - postgresql/history - contrib/postgres_fdw/postgres_fdw.c
Make the order of the header file includes consistent in contrib modules.
[postgresql] / contrib / postgres_fdw / postgres_fdw.c
2019-10-24 Amit KapilaMake the order of the header file includes consistent...
2019-08-12 Tom LaneRationalize use of list_concat + list_copy combinations.
2019-08-05 Michael PaquierFix inconsistencies and typos in the tree, take 9
2019-07-03 Etsuro Fujitapostgres_fdw: Remove redundancy in postgresAcquireSampl...
2019-06-14 Etsuro Fujitapostgres_fdw: Fix costing of pre-sorted foreign paths...
2019-06-13 Etsuro Fujitapostgres_fdw: Account for triggers in non-direct remote...
2019-06-11 Etsuro Fujitapostgres_fdw: Reorder C includes.
2019-05-26 Amit KapilaFix typos.
2019-05-22 Tom LanePhase 2 pgindent run for v12.
2019-05-22 Tom LaneInitial pgindent run for v12.
2019-05-13 Etsuro Fujitapostgres_fdw: Fix typo in comment.
2019-05-09 Etsuro Fujitapostgres_fdw: Fix cost estimation for aggregate pushdown.
2019-04-27 Tom LaneAvoid postgres_fdw crash for a targetlist entry that...
2019-04-24 Etsuro Fujitapostgres_fdw: Fix incorrect handling of row movement...
2019-04-19 Andres FreundFix two memory leaks around force-storing tuples in...
2019-04-02 Etsuro Fujitapostgres_fdw: Perform the (FINAL, NULL) upperrel operat...
2019-04-02 Etsuro Fujitapostgres_fdw: Perform the (ORDERED, NULL) upperrel...
2019-03-30 Peter EisentrautGenerated columns
2019-02-27 Andres FreundUse slots in trigger infrastructure, except for the...
2019-02-09 Tom LaneBuild out the planner support function infrastructure.
2019-02-07 Tom LaneSplit create_foreignscan_path() into three functions.
2019-01-29 Tom LaneRefactor planner's header files.
2019-01-29 Etsuro Fujitapostgres_fdw: Fix test for cached costs in estimate_pat...
2019-01-24 Etsuro Fujitapostgres_fdw: Account for tlist eval costs in estimate_...
2019-01-23 Heikki LinnakangasFix misc typos in comments.
2019-01-21 Andres FreundReplace uses of heap_open et al with the corresponding...
2019-01-21 Andres FreundReplace heapam.h includes with {table, relation}.h...
2019-01-17 Etsuro Fujitapostgres_fdw: Remove duplicate code in DML execution...
2019-01-15 Andres FreundDon't include heapam.h from others headers.
2019-01-02 Bruce MomjianUpdate copyright for 2019
2018-12-12 Tom LaneRepair bogus EPQ plans generated for postgres_fdw forei...
2018-12-04 Etsuro Fujitapostgres_fdw: Improve cost and size estimation for...
2018-11-28 Bruce MomjianC comment: remove extra '*'
2018-11-21 Andres FreundRemove WITH OIDS support, change oid catalog column...
2018-11-15 Andres FreundRejigger materializing and fetching a HeapTuple from...
2018-10-07 Tom LaneRemove some unnecessary fields from Plan trees.
2018-10-04 Tom LaneIn the executor, use an array of pointers to access...
2018-10-04 Tom LaneCentralize executor's opening/closing of Relations...
2018-09-25 Andres FreundSplit ExecStoreTuple into ExecStoreHeapTuple and ExecSt...
2018-08-28 Andrew Gierthpostgres_fdw: don't push ORDER BY with no vars (bug...
2018-07-29 Tomas VondraProvide separate header file for built-in float types
2018-07-08 Jeff DavisFix WITH CHECK OPTION on views referencing postgres_fdw...
2018-06-30 Andrew Dunstanpgindent run prior to branching
2018-05-03 Robert HaasRemove now-unnecessary cast.
2018-05-01 Robert HaasFix interaction of foreign tuple routing with remote...
2018-04-26 Tom LanePost-feature-freeze pgindent run.
2018-04-20 Tom LaneChange more places to be less trusting of RestrictInfo...
2018-04-06 Robert HaasAllow insert and update tuple routing and COPY for...
2018-04-06 Robert HaasRefactor PgFdwModifyState creation/destruction into...
2018-04-02 Robert Haaspostgres_fdw: Push down partition-wise aggregation.
2018-02-22 Robert Haaspostgres_fdw: Fix interaction of PHVs with child joins.
2018-02-19 Tom LaneRemove bogus "extern" annotations on function definitions.
2018-02-12 Alvaro Herreraget_relid_attribute_name is dead, long live get_attname
2018-02-07 Robert Haaspostgres_fdw: Push down UPDATE/DELETE joins to remote...
2018-01-17 Robert Haaspostgres_fdw: Avoid 'outer pathkeys do not match mergec...
2018-01-12 Tom LaneFix postgres_fdw to cope with duplicate GROUP BY entries.
2018-01-11 Tom LaneCosmetic fix in postgres_fdw.c.
2018-01-03 Bruce MomjianUpdate copyright for 2018
2017-12-27 Robert HaasRemove incorrect apostrophe.
2017-09-06 Tom LaneSync function prototype with its actual definition.
2017-08-20 Andres FreundChange tupledesc->attrs[n] to TupleDescAttr(tupledesc...
2017-08-17 Robert HaasRemove bogus line from comment.
2017-06-30 Peter EisentrautFix typo in comment
2017-06-21 Tom LanePhase 3 of pgindent updates.
2017-06-21 Tom LanePhase 2 of pgindent updates.
2017-05-17 Bruce MomjianPost-PG 10 beta1 pgindent run
2017-04-25 Peter Eisentrautpostgres_fdw: Fix join push down with extensions
2017-04-11 Tom LaneSimplify handling of remote-qual pass-forward in postgr...
2017-04-11 Tom LaneHandle restriction clause lists more uniformly in postg...
2017-04-10 Tom LaneImprove castNode notation by introducing list-extractio...
2017-04-06 Simon RiggsReset API of clause_selectivity()
2017-04-05 Simon RiggsCollect and use multi-column dependency stats
2017-04-04 Robert HaasAbstract logic to allow for multiple kinds of child...
2017-03-31 Robert Haaspostgres_fdw: Teach IMPORT FOREIGN SCHEMA about partiti...
2017-03-25 Andres FreundFaster expression evaluation and targetlist projection.
2017-03-16 Robert Haaspostgres_fdw: Push down FULL JOINs with restriction...
2017-03-10 Tom LaneFix hard-coded relkind constants in assorted other...
2017-01-27 Robert HaasFix typo in comment.
2017-01-27 Andres FreundUse the new castNode() macro in a number of places.
2017-01-19 Andres FreundRemove obsoleted code relating to targetlist SRF evalua...
2017-01-03 Bruce MomjianUpdate copyright via script for 2017
2016-11-04 Robert Haaspostgres_fdw: Fix typo in comment.
2016-11-03 Robert HaasUse NIL instead of NULL for an empty List.
2016-10-21 Robert Haaspostgres_fdw: Push down aggregates to remote servers.
2016-08-27 Tom LaneAdd macros to make AllocSetContextCreate() calls simple...
2016-08-26 Heikki LinnakangasSupport OID system column in postgres_fdw.
2016-08-24 Robert Haaspostgres_fdw: Cosmetic cleanup.
2016-07-15 Tom LaneAvoid invalidating all foreign-join cached plans when...
2016-07-01 Robert Haaspostgres_fdw: Fix cache lookup failure while creating...
2016-06-17 Robert Haaspostgres_fdw: Rephrase comment.
2016-06-14 Robert Haaspostgres_fdw: Check PlaceHolderVars before pushing...
2016-06-09 Robert Haaspgindent run for 9.6
2016-05-16 Robert Haaspostgres_fdw: Fix the fix for crash when pushing down...
2016-04-21 Robert HaasAllow queries submitted by postgres_fdw to be canceled.
2016-04-21 Robert Haaspostgres_fdw: Don't push down certain full joins.
2016-04-15 Robert Haaspostgres_fdw: Clean up handling of system columns.
2016-04-06 Tom LaneRun pgindent on a batch of (mostly-planner-related...
2016-03-29 Robert HaasDon't require a user mapping for FDWs to work.
2016-03-23 Robert Haaspostgres_fdw: Fix crash when pushing down multiple...
2016-03-21 Tom LaneClean up some Coverity complaints about commit 0bf3ae88...
next