summaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
AgeCommit message (Expand)Author
2002-12-18Update EvalPlanQual() to work with new executor memory management method.Tom Lane
2002-12-15Tweak default memory context allocation policy so that a context is notTom Lane
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-05Phase 1 of read-only-plans project: cause executor state nodes to pointTom Lane
2002-12-05More cleanup of userid to be AclId rather than Oid.Bruce Momjian
2002-11-29Suppress compiler warning from newer gcc.Tom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-13Make MOVE/FETCH 0 actually move/fetch 0. Add MOVE LAST to move to endBruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-10-14Arrange to copy relcache's trigdesc structure at the start of anyTom Lane
2002-09-23Further thinking about heap_mark4update: in HeapTupleSelfUpdated case,Tom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-28backend where a statically sized buffer is written to. Most of theseBruce Momjian
2002-08-15Tom Lane wrote:Bruce Momjian
2002-08-07Fix permission checking for temp-table namespace.Tom Lane
2002-08-04Change messages like this:Bruce Momjian
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-11Change error messages ExecAppend->ExecInsert and ExecReplace->ExecUpdateBruce Momjian
2002-06-26Restore error message I accidentally changed.Bruce Momjian
2002-06-26The attached patch fixes some spelling mistakes, makes theBruce Momjian
2002-06-25Back out cleanup patch. Got old version and needs work.Bruce Momjian
2002-06-25The attached patch fixes some spelling mistakes, makes theBruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-24Mark index entries "killed" when they are no longer visible to anyTom Lane
2002-05-21Since COPY fires triggers, it seems like a good idea for it to useTom Lane
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-04-27Support toasting of shared system relations, and provide toast tables forTom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-04-15The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane
2002-04-08Update comment to clarify fetch limit and LIMIT.Bruce Momjian
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-21Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-06Change made to elog:Bruce Momjian
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-02-27Clean up BeginCommand and related routines. BeginCommand and EndCommandTom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-09-18EXPLAIN ANALYZE feature to measure and show actual runtimes and tupleTom Lane
2001-09-17Suppress compiler warning.Tom Lane
2001-09-08Apply 7.1.3 changes to the current tree also.Hiroshi Inoue