summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/postgres_fdw.c
AgeCommit message (Expand)Author
2021-06-04Fix postgres_fdw failure with whole-row Vars of type RECORD.Tom Lane
2021-05-13Prevent asynchronous execution of direct foreign-table modifications.Etsuro Fujita
2021-05-12Initial pgindent and pgperltidy run for v14.Tom Lane
2021-05-12Fix EXPLAIN ANALYZE for async-capable nodes.Etsuro Fujita
2021-05-07Copy the INSERT query in postgres_fdwTomas Vondra
2021-04-27Don't pass "ONLY" options specified in TRUNCATE to foreign data wrapper.Fujii Masao
2021-04-23Minor code cleanup in asynchronous execution support.Etsuro Fujita
2021-04-08Allow TRUNCATE command to truncate foreign tables.Fujii Masao
2021-04-07postgres_fdw: Allow partitions specified in LIMIT TO to be imported.Fujii Masao
2021-03-31Silence compiler warning in non-assert builds.Tom Lane
2021-03-31Rework planning and execution of UPDATE and DELETE.Tom Lane
2021-03-31Add support for asynchronous execution.Etsuro Fujita
2021-03-30Allow estimate_num_groups() to pass back further details about the estimationDavid Rowley
2021-03-30Update obsolete comment.Etsuro Fujita
2021-02-18Fix tuple routing to initialize batching only for insertsTomas Vondra
2021-02-08Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas
2021-02-05postgres_fdw: Fix assertion in estimate_path_cost_size().Etsuro Fujita
2021-01-26Fix memory leak when deallocating prepared statement in postgres_fdwMichael Paquier
2021-01-21Fix pull_varnos' miscomputation of relids set for a PlaceHolderVar.Tom Lane
2021-01-20Implement support for bulk inserts in postgres_fdwTomas Vondra
2021-01-02Update copyright for 2021Bruce Momjian
2020-11-24Move per-agg and per-trans duplicate finding to the planner.Heikki Linnakangas
2020-10-15Fixup some appendStringInfo and appendPQExpBuffer callsDavid Rowley
2020-10-14Include result relation info in direct modify ForeignScan nodes.Heikki Linnakangas
2020-08-30Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE.Tom Lane
2020-04-07Consider Incremental Sort paths at additional placesTomas Vondra
2020-01-01Update copyrights for 2020Bruce Momjian
2019-12-03Further sync postgres_fdw's "Relations" output with the rest of EXPLAIN.Tom Lane
2019-12-02Make postgres_fdw's "Relations" output agree with the rest of EXPLAIN.Tom Lane
2019-11-01PG_FINALLYPeter Eisentraut
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-08-05Fix inconsistencies and typos in the tree, take 9Michael Paquier
2019-07-03postgres_fdw: Remove redundancy in postgresAcquireSampleRowsFunc().Etsuro Fujita
2019-06-14postgres_fdw: Fix costing of pre-sorted foreign paths with local stats.Etsuro Fujita
2019-06-13postgres_fdw: Account for triggers in non-direct remote UPDATE planning.Etsuro Fujita
2019-06-11postgres_fdw: Reorder C includes.Etsuro Fujita
2019-05-26Fix typos.Amit Kapila
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-05-13postgres_fdw: Fix typo in comment.Etsuro Fujita
2019-05-09postgres_fdw: Fix cost estimation for aggregate pushdown.Etsuro Fujita
2019-04-27Avoid postgres_fdw crash for a targetlist entry that's just a Param.Tom Lane
2019-04-24postgres_fdw: Fix incorrect handling of row movement for remote partitions.Etsuro Fujita
2019-04-19Fix two memory leaks around force-storing tuples in slots.Andres Freund
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-03-30Generated columnsPeter Eisentraut
2019-02-26Use slots in trigger infrastructure, except for the actual invocation.Andres Freund
2019-02-09Build out the planner support function infrastructure.Tom Lane