summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
Commit message (Expand)AuthorAgeFilesLines
* Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing booleanTom Lane2001-06-191-39/+81
* This patch adds support for %TYPE in CREATE FUNCTION argument and returnBruce Momjian2001-06-041-1/+2
* Print error on SELECT tab FROM tab:Bruce Momjian2001-05-211-1/+4
* New comment. This func/column things has always confused me.Bruce Momjian2001-05-191-4/+4
* Rename ParseFuncOrColumn() to ParseColumnOrFunc().Bruce Momjian2001-05-181-4/+4
* Small code cleanups,formatting.Bruce Momjian2001-05-181-2/+2
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-11/+14
* Clean up two rather nasty bugs in operator selection code.Tom Lane2001-02-161-1/+6
* Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane2001-02-141-3/+5
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Change SearchSysCache coding conventions so that a reference count isTom Lane2000-11-161-16/+28
* Add support for casting bit string constants.Peter Eisentraut2000-11-161-1/+2
* Arrange that no database accesses are attempted during parser() --- thisTom Lane2000-10-071-25/+31
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-051-95/+18
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-291-7/+8
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-121-25/+36
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-5/+9
* Clean up #include's.Bruce Momjian2000-06-151-1/+2
* Latest round of fmgr updates. All functions with bool,char, or int2Tom Lane2000-06-051-2/+3
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-301-2/+1
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-291-2/+2
* Modify raw parsetree representation returned by gram.y for SubLinks:Tom Lane2000-05-251-4/+6
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-48/+65
* transformExpr() did the Wrong Thing if applied to a SubLink node thatTom Lane2000-03-191-19/+37
* Add safety check on expression nesting depth. Default value is set byTom Lane2000-03-171-1/+33
* Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart2000-03-141-10/+2
* Someone (probably me) forgot about handling of typecasts applied toTom Lane2000-03-071-6/+9
* Fix exprTypmod to recognize length-coercion function expressions,Tom Lane2000-02-261-1/+103
* Change parse-time representation of float literals (which include oversizeTom Lane2000-02-211-8/+4
* Create a new expression node type RelabelType, which exists solely toTom Lane2000-02-201-1/+8
* Carry column aliases from the parser frontend. Enables queries likeThomas G. Lockhart2000-02-151-27/+34
* Add:Bruce Momjian2000-01-261-2/+3
* Pass atttypmod to CoerceTargetExpr, so that it can pass it on toTom Lane2000-01-171-3/+3
* Create a new parsetree node type, TypeCast, so that transformation ofTom Lane2000-01-171-6/+66
* Fix passing of atttypmod that Tom found.Bruce Momjian2000-01-161-2/+2
* Clean up handling of explicit NULL constants. Cases likeTom Lane1999-12-241-23/+27
* Reverse out nextval patch.Bruce Momjian1999-12-171-25/+1
* >Turning nextval and currval into keywords is not an acceptable way toBruce Momjian1999-12-161-1/+25
* Teach grammar and parser about aggregate(DISTINCT ...). No implementationTom Lane1999-12-101-5/+11
* Implement subselects in target lists. Also, relax requirement thatTom Lane1999-11-151-12/+35
* Allow CASE statement to contain *only* untyped result clauses or nulls.Thomas G. Lockhart1999-09-131-2/+3
* Revise implementation of SubLinks so that there is a consistent,Tom Lane1999-08-251-20/+46
* Revise parse_coerce() to handle coercion of int and floatTom Lane1999-08-051-160/+10
* Rewrite parser's handling of INSERT ... SELECT so that processingTom Lane1999-07-191-35/+44
* Move some system includes into c.h, and remove duplicates.Bruce Momjian1999-07-171-4/+1
* Support subscripts on bare column names.Tom Lane1999-07-161-116/+73
* Final cleanup.Bruce Momjian1999-07-161-2/+2
* Remove unused #includes in *.c files.Bruce Momjian1999-07-151-4/+1
* Ignore resjunk targetlist entries when matching arguments toTom Lane1999-07-111-22/+33
* Make functions static or NOT_USED as appropriate.Bruce Momjian1999-05-261-2/+3