summaryrefslogtreecommitdiff
path: root/src/backend/nodes
AgeCommit message (Expand)Author
2014-12-24Remove unused fields from ReindexStmt.Fujii Masao
2014-12-18Improve hash_create's API for selecting simple-binary-key hash functions.Tom Lane
2014-12-13Add CINE option for CREATE TABLE AS and CREATE MATERIALIZED VIEWAndrew Dunstan
2014-12-11Use correct macro for reltablespace.Heikki Linnakangas
2014-11-28Add bms_get_singleton_member(), and use it where appropriate.Tom Lane
2014-11-28Add bms_next_member(), and use it where appropriate.Tom Lane
2014-11-25Support arrays as input to array_agg() and ARRAY(SELECT ...).Tom Lane
2014-11-21Rearrange CustomScan API.Tom Lane
2014-11-07Introduce custom path and scan providers.Robert Haas
2014-11-06Implement IF NOT EXIST for CREATE INDEX.Fujii Masao
2014-10-18Avoid core dump in _outPathInfo() for Path without a parent RelOptInfo.Tom Lane
2014-10-07Implement SKIP LOCKED for row-level locksAlvaro Herrera
2014-09-22Fix mishandling of CreateEventTrigStmt's eventname field.Robert Haas
2014-09-19Row-Level Security Policies (RLS)Stephen Frost
2014-08-26Implement IF NOT EXISTS for CREATE SEQUENCE.Heikki Linnakangas
2014-08-21Rework 'MOVE ALL' to 'ALTER .. ALL IN TABLESPACE'Stephen Frost
2014-07-19Partial fix for dropped columns in functions returning composite.Tom Lane
2014-07-10Implement IMPORT FOREIGN SCHEMA.Tom Lane
2014-06-18Implement UPDATE tab SET (col1,col2,...) = (SELECT ...), ...Tom Lane
2014-06-16Avoid recursion when processing simple lists of AND'ed or OR'ed clauses.Tom Lane
2014-05-06pgindent run for 9.4Bruce Momjian
2014-04-13Make security barrier views automatically updatableStephen Frost
2014-02-17Avoid repeated name lookups during table and index DDL.Robert Haas
2014-02-13Separate multixact freezing parameters from xid'sAlvaro Herrera
2014-01-24ALTER TABLESPACE ... MOVE ... OWNED BYStephen Frost
2014-01-23Allow use of "z" flag in our printf calls, and use it where appropriate.Tom Lane
2014-01-19Add CREATE TABLESPACE ... WITH ... OptionsStephen Frost
2014-01-18Add ALTER TABLESPACE ... MOVE commandStephen Frost
2014-01-16Suppress Coverity complaints in readfuncs.c.Heikki Linnakangas
2014-01-07Update copyright for 2014Bruce Momjian
2013-12-23Support ordered-set (WITHIN GROUP) aggregates.Tom Lane
2013-12-18Add ALTER SYSTEM command to edit the server configuration file.Tatsuo Ishii
2013-12-10Rename TABLE() to ROWS FROM().Noah Misch
2013-11-22Support multi-argument UNNEST(), and TABLE() syntax for multiple functions.Tom Lane
2013-11-15Fix incorrect loop counts in tidbitmap.c.Tom Lane
2013-11-15Compute correct em_nullable_relids in get_eclass_for_sort_expr().Tom Lane
2013-11-10Fix whitespace issues found by git diff --check, add gitattributesPeter Eisentraut
2013-11-08Add the notion of REPLICA IDENTITY for a table.Robert Haas
2013-10-31Use appendStringInfoString instead of appendStringInfo where possible.Robert Haas
2013-09-30In bms_add_member(), use repalloc() if the bms needs to be enlarged.Heikki Linnakangas
2013-09-03Allow aggregate functions to be VARIADIC.Tom Lane
2013-08-18Fix planner problems with LATERAL references in PlaceHolderVars.Tom Lane
2013-08-14Remove ph_may_need from PlaceHolderInfo, with attendant simplifications.Tom Lane
2013-07-29Add SQL Standard WITH ORDINALITY support for UNNEST (and any other SRF)Greg Stark
2013-07-23Move strip_implicit_coercions() from optimizer to nodeFuncs.c.Tom Lane
2013-07-18WITH CHECK OPTION support for auto-updatable VIEWsStephen Frost
2013-07-17Implement the FILTER clause for aggregate function calls.Noah Misch
2013-07-16Add support for REFRESH MATERIALIZED VIEW CONCURRENTLY.Kevin Grittner
2013-07-01Add a convenience routine makeFuncCall to reduce duplication.Robert Haas
2013-04-29Postpone creation of pathkeys lists to fix bug #8049.Tom Lane