summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/postgres_fdw.c
Commit message (Expand)AuthorAgeFilesLines
* Fixup some appendStringInfo and appendPQExpBuffer callsDavid Rowley2020-10-151-2/+2
* Include result relation info in direct modify ForeignScan nodes.Heikki Linnakangas2020-10-141-7/+9
* Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE.Tom Lane2020-08-301-4/+3
* Consider Incremental Sort paths at additional placesTomas Vondra2020-04-071-29/+0
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Further sync postgres_fdw's "Relations" output with the rest of EXPLAIN.Tom Lane2019-12-031-5/+12
* Make postgres_fdw's "Relations" output agree with the rest of EXPLAIN.Tom Lane2019-12-021-37/+95
* PG_FINALLYPeter Eisentraut2019-11-011-21/+4
* Make the order of the header file includes consistent in contrib modules.Amit Kapila2019-10-241-2/+1
* Rationalize use of list_concat + list_copy combinations.Tom Lane2019-08-121-7/+7
* Fix inconsistencies and typos in the tree, take 9Michael Paquier2019-08-051-1/+1
* postgres_fdw: Remove redundancy in postgresAcquireSampleRowsFunc().Etsuro Fujita2019-07-031-29/+34
* postgres_fdw: Fix costing of pre-sorted foreign paths with local stats.Etsuro Fujita2019-06-141-39/+56
* postgres_fdw: Account for triggers in non-direct remote UPDATE planning.Etsuro Fujita2019-06-131-6/+13
* postgres_fdw: Reorder C includes.Etsuro Fujita2019-06-111-1/+1
* Fix typos.Amit Kapila2019-05-261-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-126/+126
* Initial pgindent run for v12.Tom Lane2019-05-221-10/+11
* postgres_fdw: Fix typo in comment.Etsuro Fujita2019-05-131-1/+1
* postgres_fdw: Fix cost estimation for aggregate pushdown.Etsuro Fujita2019-05-091-3/+13
* Avoid postgres_fdw crash for a targetlist entry that's just a Param.Tom Lane2019-04-271-5/+27
* postgres_fdw: Fix incorrect handling of row movement for remote partitions.Etsuro Fujita2019-04-241-2/+58
* Fix two memory leaks around force-storing tuples in slots.Andres Freund2019-04-191-3/+1
* postgres_fdw: Perform the (FINAL, NULL) upperrel operations remotely.Etsuro Fujita2019-04-021-15/+327
* postgres_fdw: Perform the (ORDERED, NULL) upperrel operations remotely.Etsuro Fujita2019-04-021-29/+359
* Generated columnsPeter Eisentraut2019-03-301-1/+2
* Use slots in trigger infrastructure, except for the actual invocation.Andres Freund2019-02-261-6/+10
* Build out the planner support function infrastructure.Tom Lane2019-02-091-1/+2
* Split create_foreignscan_path() into three functions.Tom Lane2019-02-071-34/+56
* Refactor planner's header files.Tom Lane2019-01-291-1/+1
* postgres_fdw: Fix test for cached costs in estimate_path_cost_size().Etsuro Fujita2019-01-291-1/+1
* postgres_fdw: Account for tlist eval costs in estimate_path_cost_size().Etsuro Fujita2019-01-241-8/+33
* Fix misc typos in comments.Heikki Linnakangas2019-01-231-1/+1
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-211-4/+4
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-211-1/+1
* postgres_fdw: Remove duplicate code in DML execution callback functions.Etsuro Fujita2019-01-171-180/+103
* Don't include heapam.h from others headers.Andres Freund2019-01-141-0/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Repair bogus EPQ plans generated for postgres_fdw foreign joins.Tom Lane2018-12-121-12/+29
* postgres_fdw: Improve cost and size estimation for aggregate pushdown.Etsuro Fujita2018-12-041-7/+49
* C comment: remove extra '*'Bruce Momjian2018-11-281-1/+1
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-201-33/+1
* Rejigger materializing and fetching a HeapTuple from a slot.Andres Freund2018-11-151-2/+3
* Remove some unnecessary fields from Plan trees.Tom Lane2018-10-071-1/+1
* In the executor, use an array of pointers to access the rangetable.Tom Lane2018-10-041-6/+6
* Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane2018-10-041-4/+0
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-251-6/+5
* postgres_fdw: don't push ORDER BY with no vars (bug #15352)Andrew Gierth2018-08-281-1/+2
* Provide separate header file for built-in float typesTomas Vondra2018-07-291-0/+1
* Fix WITH CHECK OPTION on views referencing postgres_fdw tables.Jeff Davis2018-07-081-3/+15