summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_target.c
Commit message (Expand)AuthorAgeFilesLines
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-3/+1
* Clean up #include's.Bruce Momjian2000-06-151-1/+2
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-301-4/+1
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-40/+53
* Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart2000-03-141-2/+2
* Trial implementation of ALTER DROP COLUMN.Hiroshi Inoue2000-03-091-1/+7
* Carry column aliases from the parser frontend. Enables queries likeThomas G. Lockhart2000-02-151-12/+43
* Add:Bruce Momjian2000-01-261-2/+3
* Pass atttypmod to CoerceTargetExpr, so that it can pass it on toTom Lane2000-01-171-6/+7
* Create a new parsetree node type, TypeCast, so that transformation ofTom Lane2000-01-171-61/+2
* Make number of args to a function configurable.Bruce Momjian2000-01-101-3/+3
* Teach grammar and parser about aggregate(DISTINCT ...). No implementationTom Lane1999-12-101-7/+7
* Add system indexes to match all caches.Bruce Momjian1999-11-221-2/+2
* New NameStr macro to convert Name to Str. No need for var.data anymore.Bruce Momjian1999-11-071-3/+3
* Eliminate local inefficiencies in updateTargetListEntry, make_var, andTom Lane1999-11-011-17/+18
* Rewrite parser's handling of INSERT ... SELECT so that processingTom Lane1999-07-191-630/+244
* Move some system includes into c.h, and remove duplicates.Bruce Momjian1999-07-171-4/+1
* Final cleanup.Bruce Momjian1999-07-161-2/+2
* Remove unused #includes in *.c files.Bruce Momjian1999-07-151-5/+1
* Defend against function calls with more than 8 arguments (codeTom Lane1999-06-171-3/+3
* Avoid redundant SysCache searches in coerce_type, for anotherTom Lane1999-05-291-2/+2
* pgindent run over code.Bruce Momjian1999-05-251-24/+26
* Do not assign output columns to junk attributes created fromTom Lane1999-05-231-10/+11
* Fix for DEFAULT ''.Bruce Momjian1999-05-221-4/+6
* Change resjunk to a boolean.Bruce Momjian1999-05-171-9/+10
* SELECT * error message fix.Bruce Momjian1999-05-171-4/+3
* Defend against 'update oid'. Someday we might want to supportTom Lane1999-04-291-1/+3
* Cleanup of source files where 'return' or 'var =' is alone on a line.Bruce Momjian1999-02-031-3/+2
* Rename Aggreg to Aggref.Bruce Momjian1999-01-241-3/+3
* Improve CASE statement support.Thomas G. Lockhart1998-12-131-3/+12
* Implement CASE expression.Thomas G. Lockhart1998-12-041-28/+62
* Make functions static or ifdef NOT_USED. Prevent pg_version creation.Bruce Momjian1998-10-081-3/+3
* Clean up code in analyze.c for SERIAL data type.Thomas G. Lockhart1998-09-251-53/+6
* Fix for indexing problems.Bruce Momjian1998-09-021-2/+1
* OK, folks, here is the pgindent output.Bruce Momjian1998-09-011-91/+105
* Renaming cleanup, no pgindent yet.Bruce Momjian1998-09-011-4/+4
* Fix for select bug.Bruce Momjian1998-08-261-20/+22
* Cleanup of target file.Bruce Momjian1998-08-251-3/+5
* Make sure resdomno for update/insert match attribute number forBruce Momjian1998-08-251-187/+219
* cleanupBruce Momjian1998-08-231-150/+149
* heap_fetch requires buffer pointer, must be released; heap_getnextBruce Momjian1998-08-191-2/+2
* From: David Hartwig <daybee@bellatlantic.net>Marc G. Fournier1998-08-051-12/+13
* Cleanup makeTargetEntry and remove internal.c.Bruce Momjian1998-07-201-4/+2
* Change atttypmod from int16 to int32, for Thomas.Bruce Momjian1998-07-121-7/+7
* Allow floating point constants for "def_arg" numeric arguments.Thomas G. Lockhart1998-07-081-93/+201
* Remove un-needed braces around single statements.Bruce Momjian1998-06-151-17/+1
* I made several adjustments to my earlier patch to handle theBruce Momjian1998-06-051-4/+4
* Do type conversion to match columns in UNION clauses.Thomas G. Lockhart1998-05-291-12/+3
* From: David Hartwig <daveh@insightdist.com>Marc G. Fournier1998-05-211-25/+47
* Add capabilities for automatic type conversion.Thomas G. Lockhart1998-05-091-94/+181