summaryrefslogtreecommitdiff
path: root/src/backend/nodes
AgeCommit message (Expand)Author
2001-02-12Suppress compiler warning on Alpha.Tom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-20Add missing piece of BitString support to node output functions. ExpandPeter Eisentraut
2001-01-17Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian
2001-01-08Make outfuncs/readfuncs treat OIDs properly as unsigned values. Clean upTom Lane
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-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom 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-16Make pgsql compile on FreeBSD-alpha.Bruce Momjian
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 internal string representation of BitString node to include aPeter Eisentraut
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-22Makeover for Unixware 7.1.1Peter Eisentraut
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-25Use variable aliases, if supplied, rather than real column names inTom Lane
2000-09-20Fix coredump in copyCommentStmt().Tom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-08-31Fix relative path references so that make knowns which dependencies referPeter Eisentraut
2000-08-11copyObject() and equal() now know about all parse-time node types,Tom Lane
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom 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-12First stage of reclaiming memory in executor by resetting short-termTom Lane
2000-06-29Add test code to copy all parse/plan trees. Repair essential omissionsTom Lane
2000-06-29Remove freefuncs.c, which hasn't been used in a long time and is notTom Lane
2000-06-18Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane
2000-06-16Repair unforgivably brain-dead representation of CaseExpr nodes inTom Lane
2000-06-14Big warnings cleanup for Solaris/GCC. Down to about 40 now, butPeter Eisentraut
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-30Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian
2000-05-29Generated header files parse.h and fmgroids.h are now copied intoTom Lane
2000-05-28First round of changes for new fmgr interface. fmgr itself and theTom Lane
2000-05-25Clean up sloppy coding of _outAExpr().Tom Lane
2000-04-26Tweak outUnique to include uniqColIdx[] field in the printout. This doesTom Lane
2000-04-12Ye-old pgindent run. Same 4-space tabs.Bruce Momjian
2000-04-08Add copyObject logic for TruncateStmt and a few other utility-statementTom Lane
2000-04-04Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane