summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-05New CHECKPOINT command.Vadim B. Mikheev
2000-11-05Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane
2000-10-31Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut
2000-10-26Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane
2000-10-22Some small polishing of Mark Hollomon's cleanup of DROP command: mightTom Lane
2000-10-18The following patch was sent to the patches list:Bruce Momjian
2000-10-07Arrange that no database accesses are attempted during parser() --- thisTom Lane
2000-10-05Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane
2000-09-29Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-09-12This patch implements the following command:Bruce Momjian
2000-08-24SQL-language functions are now callable in ordinary fmgr contexts ...Tom Lane
2000-08-22Fix a many-legged critter reported by chifungfan@yahoo.com: under theTom Lane
2000-08-13Clean up handling of variable-free qual clauses. System now does theTom Lane
2000-08-11Update comments for some parse node types.Tom Lane
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane
2000-08-06Clean up inefficiency in ExecRelCheck, and cause it to do the rightTom Lane
2000-07-22Remove 'Array' node type, which has evidently been dead code forTom Lane
2000-07-17Revise aggregate functions per earlier discussions in pghackers.Tom Lane
2000-07-15Remove useless and dangerous 'opt_type' option from CREATE INDEX.Tom Lane
2000-07-14Cleanup of code for creating index entries. Functional indexes withTom Lane
2000-07-14Implement nested block comments in the backend and in psql.Thomas G. Lockhart
2000-07-12First stage of reclaiming memory in executor by resetting short-termTom Lane
2000-07-11 Here is the patch with memory leak checker. This checker allow detectBruce Momjian
2000-06-28First phase of memory management rewrite (see backend/utils/mmgr/READMETom Lane
2000-06-18Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane
2000-06-12Rename rule CURRENT to OLD in source tree. Add mapping for backwardBruce Momjian
2000-06-12Back out pg_shadow changes to allow create table and locking permissions.Bruce Momjian
2000-06-09 I have large database and with this DB work more users and I very needBruce Momjian
2000-06-09Inheritance overhaul by Chris Bitmead <chris@bitmead.com>Bruce Momjian
2000-06-08Mark functions as static and ifdef NOT_USED as appropriate.Bruce Momjian
2000-05-29Second round of fmgr changes: triggers are now invoked in new style,Tom Lane
2000-05-28Miscellaneous cleanups of places that needed to account for newTom Lane
2000-05-25Modify raw parsetree representation returned by gram.y for SubLinks:Tom Lane
2000-04-12Ye-old pgindent run. Same 4-space tabs.Bruce Momjian
2000-03-24Improve comment.Tom Lane
2000-03-22Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane
2000-03-14Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart
2000-03-01Simplify parsing of column constraints by treating constraint attributesTom Lane
2000-02-21Change parse-time representation of float literals (which include oversizeTom Lane
2000-02-20Create a new expression node type RelabelType, which exists solely toTom Lane
2000-02-18Plug some more memory leaks in the planner. It still leaks like a sieve,Tom Lane
2000-02-18Implement reindex commandHiroshi Inoue
2000-02-15New cost model for planning, incorporating a penalty for random pageTom Lane
2000-02-15Carry column aliases from the parser frontend. Enables queries likeThomas G. Lockhart
2000-02-07Repair planning bugs caused by my misguided removal of restrictinfo linkTom Lane
2000-02-06Rename same() to sameseti() to have a slightly less generic name. MoveTom Lane
2000-01-27Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is nowTom Lane
2000-01-26Add:Bruce Momjian