summaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane2002-05-121-15/+8
* First pass at set-returning-functions in FROM, by Joe Conway withTom Lane2002-05-121-1/+20
* Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane2002-04-281-18/+4
* Opclasses live in namespaces. I also took the opportunity to createTom Lane2002-04-171-3/+3
* Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane2002-04-161-2/+2
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-111-5/+3
* Functions live in namespaces. Qualified function names work, egTom Lane2002-04-091-2/+4
* pg_type has a typnamespace column; system now supports creating typesTom Lane2002-03-291-4/+7
* A little further progress on schemas: push down RangeVars intoTom Lane2002-03-221-17/+30
* First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane2002-03-211-55/+108
* Restructure representation of join alias variables. An explicit JOINTom Lane2002-03-121-8/+22
* Change made to elog:Bruce Momjian2002-03-061-3/+3
* Add missing output routine for FkConstraint nodes.Tom Lane2001-10-251-5/+27
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-3/+2
* Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane2001-08-211-7/+1
* Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-typeTom Lane2001-08-161-4/+3
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-4/+5
* Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing booleanTom Lane2001-06-191-8/+33
* Modify optimizer data structures so that IndexOptInfo lists built forTom Lane2001-05-201-59/+3
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-7/+8
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Add missing piece of BitString support to node output functions. ExpandPeter Eisentraut2001-01-201-2/+2
* Make outfuncs/readfuncs treat OIDs properly as unsigned values. Clean upTom Lane2001-01-081-47/+66
* Modify readfuncs so that recursive use of stringToNode will not crashTom Lane2001-01-071-40/+17
* Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane2000-12-031-3/+3
* Change SearchSysCache coding conventions so that a reference count isTom Lane2000-11-161-4/+3
* Make pgsql compile on FreeBSD-alpha.Bruce Momjian2000-11-161-10/+10
* Restructure handling of inheritance queries so that they work with outerTom Lane2000-11-121-30/+31
* Change internal string representation of BitString node to include aPeter Eisentraut2000-10-311-2/+3
* Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut2000-10-311-3/+6
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-261-1/+16
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-051-20/+48
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-291-53/+77
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-121-53/+110
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-16/+20
* Remove 'Array' node type, which has evidently been dead code forTom Lane2000-07-221-27/+1
* Revise aggregate functions per earlier discussions in pghackers.Tom Lane2000-07-171-5/+3
* Remove useless and dangerous 'opt_type' option from CREATE INDEX.Tom Lane2000-07-151-6/+4
* First stage of reclaiming memory in executor by resetting short-termTom Lane2000-07-121-14/+7
* Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane2000-06-181-37/+6
* Repair unforgivably brain-dead representation of CaseExpr nodes inTom Lane2000-06-161-3/+7
* Big warnings cleanup for Solaris/GCC. Down to about 40 now, butPeter Eisentraut2000-06-141-3/+3
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-291-2/+2
* Clean up sloppy coding of _outAExpr().Tom Lane2000-05-251-3/+7
* Tweak outUnique to include uniqColIdx[] field in the printout. This doesTom Lane2000-04-261-3/+7
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-11/+14
* outfuncs.c was missing a print routine for Material plan nodes, leadingTom Lane2000-03-241-1/+18
* Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane2000-03-221-1/+4
* Fix a bunch of minor portability problems and maybe-bugs revealed byTom Lane2000-03-171-3/+3
* Change parse-time representation of float literals (which include oversizeTom Lane2000-02-211-7/+10