summaryrefslogtreecommitdiff
path: root/src/backend/nodes/readfuncs.c
AgeCommit message (Expand)Author
2013-03-03Add a materialized view relations.Kevin Grittner
2013-01-23Improve concurrency of foreign key lockingAlvaro Herrera
2013-01-21Add infrastructure for storing a VARIADIC ANY function's VARIADIC flag.Tom Lane
2013-01-01Update copyrights for 2013Bruce Momjian
2012-08-07Implement SQL-standard LATERAL subqueries.Tom Lane
2012-06-30Suppress compiler warnings in readfuncs.c.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-03-27Add some infrastructure for contrib/pg_stat_statements.Tom Lane
2012-03-19Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-22Add a security_barrier option for views.Robert Haas
2011-11-24Fix unsupported options in CREATE TABLE ... AS EXECUTE.Tom Lane
2011-06-16Avoid compiler warnings due to possibly unused variablesPeter Eisentraut
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-03-19Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2011-02-22Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-12-21Use memcmp() rather than strncmp() when shorter string length is known.Robert Haas
2010-12-13Generalize concept of temporary relations to "relation persistence".Robert Haas
2010-10-30Provide hashing support for arrays.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-08-07Recognize functional dependency on primary keys. This allows a table'sTom Lane
2010-02-16Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane
2010-02-12Extend the set of frame options supported for window functions.Tom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2010-01-01Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-07-16Make backend header files C++ safePeter Eisentraut
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-31Add some basic support for window frame clauses to the window-functionsTom Lane
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-11-15Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane
2008-10-06When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-07Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane
2008-08-02Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-06-11Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane