summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* Change plpgsql's GET DIAGNOSTICS statement to use SQL99-compatibleTom Lane2001-02-191-5/+13
* Clean up two rather nasty bugs in operator selection code.Tom Lane2001-02-162-16/+11
* Update comments about memory management.Tom Lane2001-02-151-1/+13
* Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane2001-01-2914-704/+358
* Looks like I broke cases involving combinations of deferred update/deleteTom Lane2001-01-271-7/+4
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-2429-58/+58
* Clean up per-tuple memory leaks in trigger firing and plpgsqlTom Lane2001-01-223-54/+57
* Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian2001-01-171-2/+2
* Restructure backend SIGINT/SIGTERM handling so that 'die' interruptsTom Lane2001-01-141-5/+3
* Repair guaranteed core dump in SPI_exec(). Guess this routine wasn'tTom Lane2001-01-041-3/+6
* Update comment.Tom Lane2001-01-011-2/+5
* Fix portability problems recently exposed by regression tests on Alphas.Tom Lane2000-12-272-38/+22
* Fix thinko for case of outer join where inner table is empty: shouldTom Lane2000-12-131-5/+6
* In SELECT FOR UPDATE, silently ignore null CTIDs, rather than generatingTom Lane2000-12-051-7/+9
* Make tuple receive/print routines TOAST-aware. Formerly, printtup wouldTom Lane2000-12-011-9/+27
* Change SearchSysCache coding conventions so that a reference count isTom Lane2000-11-167-59/+66
* Restructure handling of inheritance queries so that they work with outerTom Lane2000-11-127-382/+258
* ExecEndAppend() neglected to close indices on appended result rels,Tom Lane2000-11-091-10/+15
* Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane2000-11-081-23/+21
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-11-051-10/+4
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-268-175/+383
* Remove NO_SECURITY define.Bruce Momjian2000-10-161-3/+1
* Add proofreader's changes to docs.Bruce Momjian2000-10-051-2/+2
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-059-65/+430
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-296-202/+464
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-126-541/+953
* This patch implements a different "relkind"Bruce Momjian2000-09-121-1/+5
* Code cleanup of user name and user id handling in the backend. The currentPeter Eisentraut2000-09-061-6/+6
* Fix relative path references so that make knowns which dependencies referPeter Eisentraut2000-08-311-4/+4
* GetAttributeByName and GetAttributeByNum should be declared to returnTom Lane2000-08-241-14/+11
* SQL-language functions are now callable in ordinary fmgr contexts ...Tom Lane2000-08-2414-529/+650
* Fix a many-legged critter reported by chifungfan@yahoo.com: under theTom Lane2000-08-223-33/+51
* Move pg_checkretval out of the planner (where it never belonged) intoTom Lane2000-08-211-5/+32
* Clean up handling of variable-free qual clauses. System now does theTom Lane2000-08-133-16/+28
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-082-102/+73
* Clean up inefficiency in ExecRelCheck, and cause it to do the rightTom Lane2000-08-061-128/+69
* Modify heap_open()/heap_openr() API per pghackers discussion of 11 July.Tom Lane2000-08-032-7/+2
* ExecRestrPos() really needs to raise ERROR, not a wimpy DEBUG message,Tom Lane2000-07-251-11/+18
* Further cleanup of array behavior. Slice assignments to arrays withTom Lane2000-07-231-13/+48
* Arrays are toastable. (At least if you initdb, which I didn't force.)Tom Lane2000-07-221-30/+39
* Revise aggregate functions per earlier discussions in pghackers.Tom Lane2000-07-177-254/+203
* Cleanup of code for creating index entries. Functional indexes withTom Lane2000-07-141-173/+36
* First stage of reclaiming memory in executor by resetting short-termTom Lane2000-07-1222-997/+1078
* Fix bogus DatumGetInt32 coercion.Tom Lane2000-07-091-3/+3
* Update textin() and textout() to new fmgr style. This is just phaseTom Lane2000-07-051-2/+3
* Changed TOAST relations to have relkind RELKIND_TOASTVALUE.Jan Wieck2000-07-051-1/+5
* Automatically create toast tables on ALTER TABLE ... ADD COLUMNJan Wieck2000-07-051-1/+7
* Make toast-table creation and deletion work somewhat reliably.Tom Lane2000-07-041-3/+7
* First phase of memory management rewrite (see backend/utils/mmgr/READMETom Lane2000-06-284-146/+86
* Modify index-opening code to guarantee that the indexes of a relationTom Lane2000-06-191-10/+15