summaryrefslogtreecommitdiff
path: root/src/include/parser
AgeCommit message (Expand)Author
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-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-08-29Update obsolete comments.Tom Lane
2000-08-21First pass at integrating BIT and BIT VARYING code from Adriaan Joubert.Tom Lane
2000-08-20Make functional indexes accept binary-compatible functions, for exampleTom Lane
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane
2000-06-15Clean up #include's.Bruce Momjian
2000-06-12Rename rule CURRENT to OLD in source tree. Add mapping for backwardBruce 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-06-03New warning code about auto-created range table entries.Bruce Momjian
2000-05-12Repair list-vs-node confusion that resulted in failure for INNER JOIN ON.Tom Lane
2000-04-12Ye-old pgindent run. Same 4-space tabs.Bruce Momjian
2000-03-20Reverse out BYTEA type coersion.Bruce Momjian
2000-03-20Add compatiblity information for bytea.Bruce Momjian
2000-03-17Add safety check on expression nesting depth. Default value is set byTom Lane
2000-03-16Turns out that Mazurkiewicz's gripe about 'function inheritance' isTom Lane
2000-03-14Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart
2000-02-26Fix exprTypmod to recognize length-coercion function expressions,Tom Lane
2000-02-16Implement "date/time grand unification".Thomas G. Lockhart
2000-02-15Carry column aliases from the parser frontend. Enables queries likeThomas G. Lockhart
2000-01-27Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is nowTom Lane
2000-01-26Add:Bruce Momjian
2000-01-20Clean up longstanding gcc warnings by adding missing externTom Lane
2000-01-17Pass atttypmod to CoerceTargetExpr, so that it can pass it on toTom Lane
2000-01-17Create a new parsetree node type, TypeCast, so that transformation ofTom Lane
2000-01-10Make number of args to a function configurable.Bruce Momjian
1999-12-12any_ordering_op()'s argument should be declared Oid not int.Tom Lane
1999-12-10Teach grammar and parser about aggregate(DISTINCT ...). No implementationTom Lane
1999-11-01Eliminate local inefficiencies in updateTargetListEntry, make_var, andTom Lane
1999-10-07Fix planner and rewriter to follow SQL semantics for tables that areTom Lane
1999-08-23Remove bogus code in oper_exact --- if it didn't find an exactTom Lane
1999-08-21Major revision of sort-node handling: push knowledge of queryTom Lane
1999-08-05Revise parse_coerce() to handle coercion of int and floatTom Lane
1999-07-19Rewrite parser's handling of INSERT ... SELECT so that processingTom Lane
1999-07-16More cleanupBruce Momjian
1999-07-15Change #include's to use <> and "" as appropriate.Bruce Momjian
1999-07-15Clean up #include in /include directory. Add scripts for checking includes.Bruce Momjian
1999-07-14Cleanup of /include #include's, for 6.6 only.Bruce Momjian
1999-07-13Remove S*I comments from Stephan.Bruce Momjian
1999-06-17Defend against function calls with more than 8 arguments (codeTom Lane
1999-05-29Avoid redundant SysCache searches in coerce_type, for anotherTom Lane
1999-05-26Make functions static or NOT_USED as appropriate.Bruce Momjian
1999-05-25Another pgindent run. Sorry folks.Bruce Momjian
1999-05-25pgindent run over code.Bruce Momjian
1999-05-22Fix for DEFAULT ''.Bruce Momjian
1999-05-17Change resjunk to a boolean.Bruce Momjian