summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_relation.c
Commit message (Expand)AuthorAgeFilesLines
* pgindent run for 9.5Bruce Momjian2015-05-231-28/+28
* Represent columns requiring insert and update privileges indentently.Andres Freund2015-05-081-7/+14
* Require non-NULL pstate for all addRangeTableEntryFor* functions.Robert Haas2015-03-111-12/+18
* Suggest to the user the column they may have meant to reference.Robert Haas2015-03-111-33/+233
* Remove residual NULL-pstate handling in addRangeTableEntry.Robert Haas2015-03-031-5/+3
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-13/+13
* Disallow LATERAL references to the target table of an UPDATE/DELETE.Tom Lane2014-01-111-25/+37
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Fix LATERAL references to target table of UPDATE/DELETE.Tom Lane2014-01-071-0/+4
* Support multi-argument UNNEST(), and TABLE() syntax for multiple functions.Tom Lane2013-11-211-362/+474
* Re-allow duplicate aliases within aliased JOINs.Tom Lane2013-11-111-2/+13
* Don't allow system columns in CHECK constraints, except tableoid.Robert Haas2013-09-231-0/+10
* Add SQL Standard WITH ORDINALITY support for UNNEST (and any other SRF)Greg Stark2013-07-291-30/+146
* Move strip_implicit_coercions() from optimizer to nodeFuncs.c.Tom Lane2013-07-231-1/+0
* Change post-rewriter representation of dropped columns in joinaliasvars.Tom Lane2013-07-231-9/+20
* pgindent run for release 9.3Bruce Momjian2013-05-291-2/+2
* Clean up references to SQL92Peter Eisentraut2013-04-201-3/+3
* Clean up the mess around EXPLAIN and materialized views.Tom Lane2013-04-121-0/+49
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Allow OLD and NEW in multi-row VALUES within rules.Tom Lane2012-08-191-1/+2
* Merge parser's p_relnamespace and p_varnamespace lists into a single list.Tom Lane2012-08-081-12/+26
* Implement SQL-standard LATERAL subqueries.Tom Lane2012-08-071-57/+166
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-3/+4
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Improve table locking behavior in the face of current DDL.Robert Haas2011-11-301-1/+1
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-1/+0
* Try to acquire relation locks in RangeVarGetRelid.Robert Haas2011-07-081-1/+7
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-041-0/+1
* Allow callers to pass a missing_ok flag when opening a relation.Robert Haas2011-06-271-1/+1
* Make a code-cleanup pass over the collations patch.Tom Lane2011-04-221-3/+5
* Fix handling of collations in multi-row VALUES constructs.Tom Lane2011-04-181-7/+17
* Fix RI_Initial_Check to use a COLLATE clause when needed in its query.Tom Lane2011-04-111-0/+18
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-5/+5
* More collations cleanup, from trawling for missed collation assignments.Tom Lane2011-03-261-1/+1
* Pass collation to makeConst() instead of looking it up internally.Tom Lane2011-03-251-1/+2
* Remove collation information from TypeName, where it does not belong.Tom Lane2011-03-091-1/+2
* Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane2011-02-251-1/+20
* Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane2011-02-221-0/+2
* Per-column collation supportPeter Eisentraut2011-02-081-6/+27
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Refactor typenameTypeId()Peter Eisentraut2010-10-251-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix stupid typo in refnameRangeTblEntry() --- mea maxima culpa.Tom Lane2010-04-281-2/+2
* pgindent run for 9.0Bruce Momjian2010-02-261-12/+12
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-17/+13
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane2009-10-311-29/+14
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-271-27/+32