summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeValuesscan.c
Commit message (Expand)AuthorAgeFilesLines
* Update copyright for 2023Bruce Momjian2023-01-021-1/+1
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Use l*_node() family of functions where appropriatePeter Eisentraut2021-07-191-1/+1
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Repair more failures with SubPlans in multi-row VALUES lists.Tom Lane2020-01-171-42/+68
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Introduce notion of different types of slots (without implementing them).Andres Freund2018-11-151-1/+1
* Don't require return slots for nodes without projection.Andres Freund2018-11-091-4/+6
* Post-feature-freeze pgindent run.Tom Lane2018-04-261-2/+2
* Add expression compilation support to LLVM JIT provider.Andres Freund2018-03-221-0/+10
* Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund2018-02-161-16/+9
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Repair failure with SubPlans in multi-row VALUES lists.Tom Lane2017-11-251-5/+16
* Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund2017-08-201-3/+3
* Move ExecProcNode from dispatch to function pointer based model.Andres Freund2017-07-301-2/+5
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-251-7/+3
* Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund2017-01-191-4/+1
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Mark read/write expanded values as read-only in ValuesNext(), too.Tom Lane2016-06-031-0/+14
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* Remove dead code supporting mark/restore in SeqScan, TidScan, ValuesScan.Tom Lane2014-11-201-25/+0
* Ensure that RowExprs and whole-row Vars produce the expected column names.Tom Lane2014-11-101-5/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-1/+1
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Preserve column names in the execution-time tupledesc for a RowExpr.Tom Lane2012-02-141-1/+5
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-1/+0
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Make NestLoop plan nodes pass outer-relation variables into their innerTom Lane2010-07-121-4/+4
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-8/+17
* Remove no-longer-needed ExecCountSlots infrastructure.Tom Lane2009-09-271-11/+1
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-2/+1
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-191-7/+4
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Repair bug #2839: the various ExecReScan functions need to resetTom Lane2006-12-261-1/+2
* pgindent run for 8.2.Bruce Momjian2006-10-041-28/+28
* Arrange for ValuesScan to keep per-sublist expression eval state in aTom Lane2006-08-021-70/+77
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-0/+332