summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* Mark index entries "killed" when they are no longer visible to anyTom Lane2002-05-243-14/+14
* Since COPY fires triggers, it seems like a good idea for it to useTom Lane2002-05-211-18/+2
* Remove global variable scanCommandId in favor of storing a command IDTom Lane2002-05-213-55/+35
* Restructure indexscan API (index_beginscan, index_getnext) perTom Lane2002-05-202-83/+44
* Get rid of the last few uses of typeidTypeName() rather thanTom Lane2002-05-172-8/+7
* Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane2002-05-123-253/+3
* First pass at set-returning-functions in FROM, by Joe Conway withTom Lane2002-05-129-20/+673
* Enforce EXECUTE privilege for aggregate functions.Tom Lane2002-04-291-1/+10
* Support toasting of shared system relations, and provide toast tables forTom Lane2002-04-271-1/+2
* Restructure aclcheck error reporting to make permission-failureTom Lane2002-04-272-14/+18
* Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane2002-04-162-4/+6
* The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane2002-04-152-4/+4
* Checking to decide whether relations are system relations now dependsTom Lane2002-04-121-2/+2
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-111-20/+77
* Update comment to clarify fetch limit and LIMIT.Bruce Momjian2002-04-081-2/+3
* Reimplement temp tables using schemas. The temp table map is history;Tom Lane2002-03-311-3/+3
* pg_class has a relnamespace column. You can create and access tablesTom Lane2002-03-261-6/+10
* Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane2002-03-211-7/+10
* First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane2002-03-212-6/+7
* Remove long-dead 'fix for SELECT NULL' to stop current coredump.Tom Lane2002-03-211-3/+2
* Code review for DOMAIN patch.Tom Lane2002-03-201-3/+2
* Code review for improved-hashing patch. Fix some portability issuesTom Lane2002-03-091-21/+16
* I've attached a patch which implements Bob Jenkin's hash function forBruce Momjian2002-03-061-3/+2
* Change made to elog:Bruce Momjian2002-03-062-4/+4
* Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian2002-03-025-11/+11
* Teach planner about the idea that a mergejoin won't necessarily readTom Lane2002-03-011-77/+41
* Clean up BeginCommand and related routines. BeginCommand and EndCommandTom Lane2002-02-273-102/+74
* Restructure command-completion-report code so that there is just oneTom Lane2002-02-262-5/+5
* A bunch of changes aimed at reducing backend startup time...Tom Lane2002-02-195-299/+105
* Privileges on functions and procedural languagesPeter Eisentraut2002-02-181-1/+4
* Ensure that a cursor is scanned under the same scanCommandId it wasTom Lane2002-02-141-7/+24
* Repair problems with EvalPlanQual where target table is scanned asTom Lane2002-02-112-47/+64
* Add CHECK_FOR_INTERRUPTS() in various strategic spots, per commentsTom Lane2002-01-061-3/+5
* 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
* Repair crash in EvalPlanQual of query involving nestloop with innerTom Lane2001-11-121-2/+9
* 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
* Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian2001-10-288-18/+19
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-2531-411/+301
* 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
* Keep the contents of ItemPointerData not the pointers so thatHiroshi Inoue2001-09-291-16/+11
* Quick-and-dirty fix for recursive plpgsql functions, per bug report fromTom Lane2001-09-211-44/+61
* EXPLAIN ANALYZE feature to measure and show actual runtimes and tupleTom Lane2001-09-187-40/+176
* Suppress compiler warning.Tom Lane2001-09-171-2/+2
* Apply 7.1.3 changes to the current tree also.Hiroshi Inoue2001-09-081-1/+2
* Make hashjoin give the right answer with toasted input data.Tom Lane2001-08-131-18/+32
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-2/+2
* Evaluate LIMIT/OFFSET expressions with ExecEvalExprSwitchContext, notTom Lane2001-08-061-9/+11