summaryrefslogtreecommitdiff
path: root/src/backend/executor
AgeCommit message (Expand)Author
2020-11-04Remove useless entries for aggregate functions from fmgrtab.c.Tom Lane
2020-11-03Use INT64_FORMAT to print int64 variables in sort debugTomas Vondra
2020-11-03Guard against core dump from uninitialized subplan.Tom Lane
2020-11-02Fix some grammar and typos in comments and docsMichael Paquier
2020-10-26In INSERT/UPDATE, use the table's real tuple descriptor as target.Tom Lane
2020-10-23Fix initialization of es_result_relations in EvalPlanQualStart().Heikki Linnakangas
2020-10-19Fix list-munging bug that broke SQL function result coercions.Tom Lane
2020-10-19Remove PartitionRoutingInfo struct.Heikki Linnakangas
2020-10-19Revise child-to-root tuple conversion map management.Heikki Linnakangas
2020-10-19Clean up code to resolve the "root target relation" in nodeModifyTable.cHeikki Linnakangas
2020-10-15Refactor code for cross-partition updates to a separate function.Heikki Linnakangas
2020-10-14Remove es_result_relation_info from EState.Heikki Linnakangas
2020-10-14Include result relation info in direct modify ForeignScan nodes.Heikki Linnakangas
2020-10-13Create ResultRelInfos later in InitPlan, index them by RT index.Heikki Linnakangas
2020-10-05Support for OUT parameters in proceduresPeter Eisentraut
2020-09-27Move resolution of AlternativeSubPlan choices to the planner.Tom Lane
2020-09-16Don't fetch partition check expression during InitResultRelInfo.Tom Lane
2020-09-16Change LogicalTapeSetBlocks() to use nBlocksWritten.Jeff Davis
2020-09-16HashAgg: release write buffers sooner by rewinding tape.Jeff Davis
2020-09-12logtape.c: do not preallocate for tapes when sortingJeff Davis
2020-09-08Check default partitions constraints while descendingAlvaro Herrera
2020-08-15Be more careful about the shape of hashable subplan clauses.Tom Lane
2020-08-05Fix matching of sub-partitions when a partitioned plan is stale.Tom Lane
2020-07-29Add hash_mem_multiplier GUC.Peter Geoghegan
2020-07-29HashAgg: use better cardinality estimate for recursive spilling.Jeff Davis
2020-07-29Rename another "hash_mem" local variable.Peter Geoghegan
2020-07-28Make EXPLAIN ANALYZE of HashAgg more similar to Hash JoinDavid Rowley
2020-07-26Fix LookupTupleHashEntryHash() pipeline-stall issue.Jeff Davis
2020-07-25Fix buffer usage stats for nodes above Gather Merge.Amit Kapila
2020-07-20Fix minor typo in nodeIncrementalSort.c.Amit Kapila
2020-07-18Rename "hash_mem" local variable.Peter Geoghegan
2020-07-17Use MinimalTuple for tuple queues.Thomas Munro
2020-07-13HashAgg: before spilling tuples, set unneeded columns to NULL.Jeff Davis
2020-07-08code: replace 'master' with 'leader' where appropriate.Andres Freund
2020-06-19Fix EXPLAIN ANALYZE for parallel HashAgg plansDavid Rowley
2020-06-16Fix buffile.c error handling.Thomas Munro
2020-06-12Avoid using a cursor in plpgsql's RETURN QUERY statement.Tom Lane
2020-06-09Fix HashAgg regression from choosing too many initial buckets.Jeff Davis
2020-05-17Mop-up for wait event naming issues.Tom Lane
2020-05-16Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane
2020-05-16Fix assertion with relation using REPLICA IDENTITY FULL in subscriberMichael Paquier
2020-05-14Initial pgindent and pgperltidy run for v13.Tom Lane
2020-05-13Dial back -Wimplicit-fallthrough to level 3Alvaro Herrera
2020-05-12Add -Wimplicit-fallthrough to CFLAGS and CXXFLAGSAlvaro Herrera
2020-05-12Fix typos and improve incremental sort commentsTomas Vondra
2020-05-09Do no reset bounded before incremental sort rescanTomas Vondra
2020-05-09Fix handling of REWIND/MARK/BACKWARD in incremental sortTomas Vondra
2020-05-05Change the display of WAL usage statistics in Explain.Amit Kapila
2020-04-23Fix transient memory leak for SRFs in FROM.Andres Freund
2020-04-21Fix minor violations of FunctionCallInvoke usage protocol.Tom Lane