summaryrefslogtreecommitdiff
path: root/src/backend/executor/spi.c
Commit message (Expand)AuthorAgeFilesLines
* Get rid of ReferentialIntegritySnapshotOverride by extending Executor APITom Lane2003-09-251-10/+38
* _SPI_cursor_operation forgot to check for failure return fromTom Lane2003-09-231-4/+9
* Since SPI_modifytuple's natts argument is the number of attributes to beTom Lane2003-09-161-2/+2
* Another pgindent run with updated typedefs.Bruce Momjian2003-08-081-5/+6
* Fix nasty little order-of-operations bug in _SPI_cursor_operation.Tom Lane2003-08-081-6/+17
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-14/+15
* Error message editing in backend/executor.Tom Lane2003-07-211-23/+33
* Implement new-protocol binary I/O support in DataRow, Bind, and FunctionCallTom Lane2003-05-091-6/+2
* Update 3.0 protocol support to match recent agreements about how toTom Lane2003-05-081-9/+9
* Restructure command destination handling so that we pass aroundTom Lane2003-05-061-24/+26
* Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane2003-05-061-3/+3
* Portal and memory management infrastructure for extended query protocol.Tom Lane2003-05-021-150/+73
* Infrastructure for deducing Param types from context, in the same wayTom Lane2003-04-291-3/+3
* Code review for holdable-cursors patch. Fix error recovery, memoryTom Lane2003-04-291-2/+2
* Put back encoding-conversion step in processing of incoming queries;Tom Lane2003-04-271-6/+2
* Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane2003-04-241-2/+2
* This patch implements holdable cursors, following the proposalBruce Momjian2003-03-271-2/+2
* Implement SQL92-compatible FIRST, LAST, ABSOLUTE n, RELATIVE n optionsTom Lane2003-03-111-3/+6
* Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane2003-03-101-93/+11
* Fix SPI result logic for case where there are multiple statements of theTom Lane2003-02-141-1/+19
* SPI_exec shouldn't return SPI_OK_SELECT if it hasn't actually returnedTom Lane2003-01-291-1/+14
* Fix coredump problem in plpgsql's RETURN NEXT. When a SELECT INTOTom Lane2003-01-211-43/+57
* Adjust Tcl-related code to compile cleanly with Tcl 8.4 (add const modifiers asTom Lane2002-12-301-12/+13
* Skip unnecessary plan-copying now that plan trees are read-only in theTom Lane2002-12-171-5/+2
* Tweak default memory context allocation policy so that a context is notTom Lane2002-12-151-4/+4
* Revise executor APIs so that all per-query state structure is built inTom Lane2002-12-151-10/+10
* Phase 1 of read-only-plans project: cause executor state nodes to pointTom Lane2002-12-051-57/+53
* Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian2002-11-131-6/+3
* Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian2002-11-111-3/+6
* Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian2002-11-101-6/+3
* Make SPI's execution of querystrings follow the rules agreed to forTom Lane2002-10-141-117/+212
* pgindent run.Bruce Momjian2002-09-041-6/+7
* Code review for HeapTupleHeader changes. Add version number to page headersTom Lane2002-09-021-8/+6
* oid is needed, it is added at the end of the struct (after the nullBruce Momjian2002-07-201-4/+8
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
* Remove global variable scanCommandId in favor of storing a command IDTom Lane2002-05-211-21/+1
* The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane2002-04-151-2/+2
* First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane2002-03-211-3/+4
* Clean up BeginCommand and related routines. BeginCommand and EndCommandTom Lane2002-02-271-26/+34
* Restructure command-completion-report code so that there is just oneTom Lane2002-02-261-3/+3
* Ensure that a cursor is scanned under the same scanCommandId it wasTom Lane2002-02-141-7/+24
* SPI_cursor_open must copy by-reference parameter values into theTom Lane2002-01-031-6/+28
* Insert CommandCounterIncrement call into SPI_cursor_open.Tom Lane2001-11-211-1/+4
* Clean up usage-statistics display code (ShowUsage and friends). StatFpTom Lane2001-11-101-10/+3
* Fix coredump in plpgsql when trying to return a rowtype result.Tom Lane2001-11-051-1/+35
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-45/+44
* Make SPI's column-accessing functions work for system columns as well asTom Lane2001-10-231-21/+61
* Further cleanup of dynahash.c API, in pursuit of portability andTom Lane2001-10-051-5/+3
* Add a SPI_copytupledesc function that parallels SPI_copytuple --- ie,Tom Lane2001-08-021-3/+30