summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2001-05-21Print error on SELECT tab FROM tab:Bruce Momjian
2001-05-20Modify optimizer data structures so that IndexOptInfo lists built forTom Lane
2001-05-15EvalPlanQual was thoroughly broken for concurrent update/delete on inheritanceTom Lane
2001-05-07Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane
2001-04-24Undo pgindent brain damage, so that node type numbers can once again beTom Lane
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-03-04Update mysql converter, new version released.Bruce Momjian
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-01-29Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-22Clean up per-tuple memory leaks in trigger firing and plpgsqlTom Lane
2001-01-20Add missing piece of BitString support to node output functions. ExpandPeter Eisentraut
2001-01-17Move structure comments from the top block down to the line entries forBruce Momjian
2001-01-07Modify readfuncs so that recursive use of stringToNode will not crashTom Lane
2001-01-05Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane
2000-12-14Planner speedup hacking. Avoid saving useless pathkeys, so that pathTom Lane
2000-12-12Cache eval cost of qualification expressions in RestrictInfo nodes toTom Lane
2000-12-01Pursuant to a pghackers discussion back around 11-Jul-00, get rid of aset.c'sTom Lane
2000-11-24Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant,Peter Eisentraut
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-14Extend CREATE DATABASE to allow selection of a template database to beTom Lane
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