Use PqMsg_* macros in applyparallelworker.c.
[postgresql.git] / src / backend / executor /
4 days ago Tom LaneFix re-execution of a failed SQLFunctionCache entry.
9 days ago Masahiko SawadaFix typos in comments.
13 days ago Andres FreundReduce ExecSeqScan* code size using pg_assume()
2025-08-11 Dean RasheedFix security checks in selectivity estimation functions.
2025-08-08 Tom LaneMop-up for Datum conversion cleanups.
2025-08-08 Peter EisentrautAdd missing Datum conversions
2025-08-08 Peter EisentrautRemove useless/superfluous Datum conversions
2025-08-04 Amit KapilaDetect and report update_deleted conflicts.
2025-07-31 Michael PaquierRename CachedPlanType to PlannedStmtOrigin for PlannedStmt
2025-07-24 Michael PaquierIntroduce field tracking cached plan type in PlannedStmt
2025-07-18 Dean RasheedFix concurrent update trigger issues with MERGE in...
2025-07-17 Amit LangoteRemove duplicate line
2025-07-01 Amit LangoteFix typos in comments
2025-06-14 David RowleyImprove comments for TidRangeEval
2025-06-13 Jeff DavisComment fixups from 626df47ad9.
2025-05-31 Dean RasheedFix MERGE into a plain inheritance parent table.
2025-05-22 Tom LaneIn ExecInitModifyTable, don't scribble on the source...
2025-05-22 Amit LangoteRevert "Don't lock partitions pruned by initial pruning"
2025-05-09 Michael PaquierAdd support for runtime arguments in injection points
2025-05-02 Tom LaneDon't use a tuplestore if we don't have to for SQL...
2025-04-20 David RowleyFix a few duplicate words in comments
2025-04-19 Michael PaquierFix typos and grammar in the code
2025-04-17 Tom LaneCache typlens of a SQL function's input arguments.
2025-04-17 Tom LaneMake SQLFunctionCache long-lived again.
2025-04-17 Tom LaneSplit some storage out to separate subcontexts of fcontext.
2025-04-17 Tom LaneMake functions.c mostly run in a short-lived memory...
2025-04-17 Tom LaneMinor performance improvement for SQL-language functions.
2025-04-15 Tom LaneFix failure for generated column with a not-null domain...
2025-04-12 Peter GeogheganHarmonize function parameter names for Postgres 18.
2025-04-08 Amit KapilaFix uninitialized index information access during apply.
2025-04-06 Peter EisentrautRelax ordering-related hardcoded btree requirements...
2025-04-04 Tom Lanefunctions.c: copy trees from source_list before parse...
2025-04-03 Tom LaneFix oversight in commit 0dca5d68d.
2025-04-02 Andres FreundRemove HeapBitmapScan's skip_fetch optimization
2025-04-02 Tom LaneChange SQL-language functions to use the plan cache.
2025-03-29 Dean RasheedFix MERGE with DO NOTHING actions into a partitioned...
2025-03-28 Peter EisentrautAdd support for not-null constraints on virtual generat...
2025-03-28 Peter EisentrautModernize some code a bit
2025-03-28 Peter EisentrautRename a node field for clarity
2025-03-25 Jeff DavisRemove 'additional' pointer from TupleHashEntryData.
2025-03-25 Jeff DavisAdd ExecCopySlotMinimalTupleExtra().
2025-03-25 Jeff DavisCreate accessor functions for TupleHashEntry.
2025-03-25 Jeff DavisHashAgg: use Bump allocator for hash TupleHashTable...
2025-03-24 Amit KapilaDetect and Log multiple_unique_conflicts type conflict.
2025-03-24 Michael PaquierAllow plugins to set a 64-bit plan identifier in Planne...
2025-03-19 Amit LangoteEnsure first ModifyTable rel initialized if all are...
2025-03-18 Robert HaasMake it possible for loadable modules to add EXPLAIN...
2025-03-15 Melanie PlagemanRemove table AM callback scan_bitmap_next_block
2025-03-15 Melanie PlagemanBitmapHeapScan uses the read stream API
2025-03-15 Melanie PlagemanSeparate TBM[Shared|Private]Iterator and TBMIterateResult
2025-03-12 Heikki LinnakangasHandle interrupts while waiting on Append's async subplans
2025-03-11 Peter GeogheganShow index search count in EXPLAIN ANALYZE, take 2.
2025-03-11 Daniel GustafssonAdd special case fast-paths for strict functions
2025-03-11 Daniel GustafssonReplace EEOP_DONE with special steps for return/no...
2025-03-10 Heikki LinnakangasFix a few more redundant calls of GetLatestSnapshot()
2025-03-10 Heikki LinnakangasFix snapshot used in logical replication index lookup
2025-02-27 Peter EisentrautGeneralize hash and ordering support in amapi
2025-02-25 Amit LangoteFix bug in cbc127917 to handle nested Append correctly
2025-02-21 Peter EisentrautDrop opcintype from index AM strategy translation API
2025-02-20 Amit LangoteDon't lock partitions pruned by initial pruning
2025-02-19 Tom LaneAssert that ExecOpenIndices and ExecCloseIndices are...
2025-02-19 Tomas VondraConsider BufFiles when adjusting hashjoin parameters
2025-02-18 Jeff DavisUpdate outdated comments in nodeAgg.c.
2025-02-17 Amit LangoteFix an oversight in cbc127917 to handle MERGE correctly
2025-02-17 Michael PaquierMove wal_buffers_full from PgStat_PendingWalStats to...
2025-02-14 Daniel GustafssonFix assertion on dereferenced object
2025-02-11 Jeff DavisInjection points for hash aggregation.
2025-02-07 Peter EisentrautVirtual generated columns
2025-02-07 Amit LangoteTrack unpruned relids to avoid processing pruned relations
2025-02-03 Peter EisentrautIntegrate GistTranslateCompareType() into IndexAmTransl...
2025-02-01 Peter EisentrautRename GistTranslateStratnum() to GistTranslateCompareT...
2025-01-31 Tom LaneGet rid of our dependency on type "long" for memory...
2025-01-31 Amit LangoteFix bad indentation introduced in commit d47cbf474
2025-01-31 Amit LangotePerform runtime initial pruning outside ExecInitNode()
2025-01-30 Melanie PlagemanMove BitmapTableScan per-scan setup into a helper
2025-01-30 Tom LaneSimplify executor's handling of CaseTestExpr & CoerceTo...
2025-01-30 Amit LangoteMove PartitionPruneInfo out of plan nodes into PlannedStmt
2025-01-21 Amit LangoteRefactor ExecScan() to allow inlining of its core logic
2025-01-16 Dean RasheedAdd OLD/NEW support to RETURNING in DML queries.
2025-01-15 Peter EisentrautChange gist stratnum function to use CompareType
2025-01-15 Peter EisentrautRename RowCompareType to CompareType
2025-01-13 Jeff DavisRevert "TupleHashTable: store additional data along...
2025-01-13 Richard GuoFix pgindent damage
2025-01-11 Peter EisentrautAdd support for NOT ENFORCED in CHECK constraints
2025-01-11 Jeff DavisFix redefinition of type in commit e0ece2a981.
2025-01-11 Jeff DavisTupleHashTable: store additional data along with tuple.
2025-01-07 Jeff DavisExecInitAgg: update aggstate->numaggs and ->numtrans...
2025-01-07 Jeff DavisnodeSetOp.c: missing additionalsize for BuildTupleHashT...
2025-01-07 Jeff DavisRemove unused TupleHashTableData->entrysize.
2025-01-02 David RowleyFix outdated CHUNKHDRSZ value in nodeAgg.c
2025-01-01 Bruce MomjianUpdate copyright for 2025
2024-12-27 David RowleySpeedup tuple deformation with additional function...
2024-12-20 David RowleyOptimize alignment calculations in tuple form/deform
2024-12-20 David RowleyIntroduce CompactAttribute array in TupleDesc, take 2
2024-12-19 Tom LaneGet rid of old version of BuildTupleHashTable().
2024-12-19 Tom LaneUse ExecGetCommonSlotOps infrastructure in more places.
2024-12-19 Tom LaneConvert SetOp to read its inputs as outerPlan and inner...
2024-12-19 Melanie PlagemanRemove extra prefetch iterator setup for Bitmap Table...
2024-12-19 Melanie PlagemanFix bitmap table scan crash on iterator release
2024-12-19 David RowleyOptimize grouping equality checks with virtual slots
next