summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* 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
* Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane2000-06-182-262/+112
* Fix performance problems with pg_index lookups (see, for example,Tom Lane2000-06-173-304/+89
* Final #include cleanup.Bruce Momjian2000-06-1512-24/+12
* Clean up #include's.Bruce Momjian2000-06-152-2/+4
* Another batch of fmgr updates. I think I have gotten all old-styleTom Lane2000-06-131-19/+35
* nodeAppend tried to deal with multiple result relations, but apparently it neverTom Lane2000-06-102-59/+76
* Inheritance overhaul by Chris Bitmead <chris@bitmead.com>Bruce Momjian2000-06-091-2/+7
* Mark functions as static and ifdef NOT_USED as appropriate.Bruce Momjian2000-06-081-2/+3
* The heralded `Grand Unified Configuration scheme' (GUC)Peter Eisentraut2000-05-311-3/+2
* Third round of fmgr updates: eliminate calls using fmgr() andTom Lane2000-05-303-16/+14
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-306-13/+6
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-291-3/+1
* Second round of fmgr changes: triggers are now invoked in new style,Tom Lane2000-05-291-5/+2
* First round of changes for new fmgr interface. fmgr itself and theTom Lane2000-05-284-132/+218
* Fix problem in which sloppily-coded test in ExecInitIndexScan wouldTom Lane2000-05-231-46/+17
* Correct oversight in hashjoin cost estimation: nodeHash sizes its hashTom Lane2000-04-181-2/+1
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-1214-419/+475
* Commebts & one check in EndEvalPlanQual().Vadim B. Mikheev2000-04-071-4/+10
* Fix (I hope) resource leakage in EvalPlanQual: open subplans must beTom Lane2000-04-071-1/+41
* Partial fix for EvalPlanQual bugs reported by Magnus Hagander, 3-Apr.Tom Lane2000-04-072-33/+27
* Fix bug noted by Bruce: FETCH in an already-aborted transaction blockTom Lane2000-04-042-26/+17
* ExecSubPlan needs to be able to cope with RelabelType nodes atop theTom Lane2000-03-231-8/+20
* Correct typo in error message.Tom Lane2000-03-211-2/+2
* Redo permissions-checking code so that it does the right thing at APPENDTom Lane2000-03-092-89/+246
* Hmm, it seems nodeMaterial has been broken for a good long while;Tom Lane2000-03-021-15/+13
* Create a new expression node type RelabelType, which exists solely toTom Lane2000-02-201-28/+36
* Implement reindex commandHiroshi Inoue2000-02-182-2/+14