aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAge
* Extend CREATE DATABASE to allow selection of a template database to beTom Lane2000-11-14
* Restructure handling of inheritance queries so that they work with outerTom Lane2000-11-12
* New CHECKPOINT command.Vadim B. Mikheev2000-11-05
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-11-05
* Change internal string representation of BitString node to include aPeter Eisentraut2000-10-31
* Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut2000-10-31
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-26
* Makeover for Unixware 7.1.1Peter Eisentraut2000-10-22
* The following patch was sent to the patches list:Bruce Momjian2000-10-18
* Arrange that no database accesses are attempted during parser() --- thisTom Lane2000-10-07
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-05
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-29
* Use variable aliases, if supplied, rather than real column names inTom Lane2000-09-25
* Fix coredump in copyCommentStmt().Tom Lane2000-09-20
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-12
* Fix relative path references so that make knowns which dependencies referPeter Eisentraut2000-08-31
* copyObject() and equal() now know about all parse-time node types,Tom Lane2000-08-11
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-08
* Remove 'Array' node type, which has evidently been dead code forTom Lane2000-07-22
* Revise aggregate functions per earlier discussions in pghackers.Tom Lane2000-07-17
* Remove useless and dangerous 'opt_type' option from CREATE INDEX.Tom Lane2000-07-15
* First stage of reclaiming memory in executor by resetting short-termTom Lane2000-07-12
* Add test code to copy all parse/plan trees. Repair essential omissionsTom Lane2000-06-29
* Remove freefuncs.c, which hasn't been used in a long time and is notTom Lane2000-06-29
* Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane2000-06-18
* Repair unforgivably brain-dead representation of CaseExpr nodes inTom Lane2000-06-16
* Big warnings cleanup for Solaris/GCC. Down to about 40 now, butPeter Eisentraut2000-06-14
* Inheritance overhaul by Chris Bitmead <chris@bitmead.com>Bruce Momjian2000-06-09
* Mark functions as static and ifdef NOT_USED as appropriate.Bruce Momjian2000-06-08
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-30
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-29
* First round of changes for new fmgr interface. fmgr itself and theTom Lane2000-05-28
* Clean up sloppy coding of _outAExpr().Tom Lane2000-05-25
* Tweak outUnique to include uniqColIdx[] field in the printout. This doesTom Lane2000-04-26
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-12
* Add copyObject logic for TruncateStmt and a few other utility-statementTom Lane2000-04-08
* Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane2000-04-04
* outfuncs.c was missing a print routine for Material plan nodes, leadingTom Lane2000-03-24
* Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane2000-03-22
* Fix a bunch of minor portability problems and maybe-bugs revealed byTom Lane2000-03-17
* Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart2000-03-14
* equalAttr() had its strcmp test backwards :-(Tom Lane2000-03-01
* Change parse-time representation of float literals (which include oversizeTom Lane2000-02-21
* Create a new expression node type RelabelType, which exists solely toTom Lane2000-02-20
* New cost model for planning, incorporating a penalty for random pageTom Lane2000-02-15
* Carry column aliases from the parser frontend. Enables queries likeThomas G. Lockhart2000-02-15
* Repair planning bugs caused by my misguided removal of restrictinfo linkTom Lane2000-02-07
* Rename same() to sameseti() to have a slightly less generic name. MoveTom Lane2000-02-06
* Hmm, equalfuncs didn't know about SortClause or GroupClauseTom Lane2000-01-31
* Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is nowTom Lane2000-01-27