Fix deparsing FETCH FIRST <expr> ROWS WITH TIES
[postgresql.git] / src / backend / executor /
9 days ago 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
2024-12-19 David RowleyFix Assert failure in WITH RECURSIVE UNION queries
2024-12-18 Melanie PlagemanBitmap Table Scans use unified TBMIterator
2024-12-18 Melanie PlagemanAdd common interface for TBMIterators
2024-12-17 David RowleyFix incorrect slot type in BuildTupleHashTableExt
2024-12-11 David RowleyUse ExprStates for hashing in GROUP BY and SubPlans
2024-12-10 David RowleySpeedup Hash Joins with dedicated functions for ExprSta...
2024-12-10 Tom LaneDoc: add some commentary about ExecutorRun's NoMovement...
2024-12-10 Peter EisentrautSupport for GiST in get_equal_strategy_number()
2024-12-10 Peter EisentrautReplace get_equal_strategy_number_for_am() by get_equal...
2024-12-10 Peter EisentrautImprove internal logical replication error for missing...
2024-12-09 Tom LaneSimplify executor's determination of whether to use...
2024-12-09 Richard GuoFix right-semi-joins in HashJoin rescans
2024-12-09 Amit KapilaImprove the error message introduced in commit 87ce27de696.
2024-12-09 David RowleyFix possible crash during WindowAgg evaluation
2024-12-04 Amit KapilaEnsure stored generated columns must be published when...
2024-12-03 David RowleyRevert "Introduce CompactAttribute array in TupleDesc"
2024-12-03 David RowleyIntroduce CompactAttribute array in TupleDesc
2024-11-28 Peter EisentrautRemove useless casts to (void *)
next