| Commit message (Expand) | Author | Age | Files | Lines |
| * | pgindent run for 9.0 | Bruce Momjian | 2010-02-26 | 3 | -13/+13 |
| * | Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue. | Tom Lane | 2010-02-16 | 1 | -7/+20 |
| * | Add query text to auto_explain output. | Andrew Dunstan | 2010-02-16 | 1 | -1/+3 |
| * | Fix up rickety handling of relation-truncation interlocks. | Tom Lane | 2010-02-09 | 1 | -2/+2 |
| * | Remove old-style VACUUM FULL (which was known for a little while as | Tom Lane | 2010-02-08 | 1 | -2/+1 |
| * | Create a "relation mapping" infrastructure to support changing the relfilenodes | Tom Lane | 2010-02-07 | 1 | -5/+5 |
| * | Restructure CLUSTER/newstyle VACUUM FULL/ALTER TABLE support so that swapping | Tom Lane | 2010-02-04 | 1 | -4/+7 |
| * | Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME. | Robert Haas | 2010-02-01 | 1 | -2/+2 |
| * | Improve the handling of SET CONSTRAINTS commands by having them search | Tom Lane | 2010-01-17 | 1 | -3/+3 |
| * | Remove all the special-case code for INT64_IS_BUSTED, per decision that | Tom Lane | 2010-01-07 | 1 | -24/+1 |
| * | Further fixes for per-tablespace options patch. | Robert Haas | 2010-01-07 | 1 | -1/+2 |
| * | Support rewritten-based full vacuum as VACUUM FULL. Traditional | Itagaki Takahiro | 2010-01-06 | 1 | -2/+3 |
| * | Support ALTER TABLESPACE name SET/RESET ( tablespace_options ). | Robert Haas | 2010-01-05 | 1 | -1/+7 |
| * | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | 22 | -44/+44 |
| * | Binary upgrade: | Bruce Momjian | 2009-12-24 | 1 | -1/+2 |
| * | Adjust naming of indexes and their columns per recent discussion. | Tom Lane | 2009-12-23 | 1 | -1/+5 |
| * | Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics. | Robert Haas | 2009-12-15 | 1 | -1/+2 |
| * | Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain. | Robert Haas | 2009-12-12 | 1 | -1/+3 |
| * | Add YAML to list of EXPLAIN formats. Greg Sabino Mullane, reviewed by Takahir... | Andrew Dunstan | 2009-12-11 | 1 | -2/+3 |
| * | Add exclusion constraints, which generalize the concept of uniqueness to | Tom Lane | 2009-12-07 | 1 | -1/+2 |
| * | Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to be | Tom Lane | 2009-11-20 | 1 | -2/+2 |
| * | Add a hook to CREATE/ALTER ROLE to allow an external module to check the | Tom Lane | 2009-11-18 | 1 | -1/+9 |
| * | Fix longstanding problems in VACUUM caused by untimely interruptions | Alvaro Herrera | 2009-11-10 | 1 | -2/+2 |
| * | Re-implement EvalPlanQual processing to improve its performance and eliminate | Tom Lane | 2009-10-26 | 1 | -3/+3 |
| * | CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga... | Andrew Dunstan | 2009-10-12 | 1 | -1/+3 |
| * | Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c. | Tom Lane | 2009-10-10 | 1 | -1/+3 |
| * | Implement the DO statement to support execution of PL code without having | Tom Lane | 2009-09-22 | 1 | -1/+2 |
| * | Extend EXPLAIN to support output in XML or JSON format. | Tom Lane | 2009-08-10 | 1 | -2/+14 |
| * | Remove long-since-unused file commands/version.h. | Tom Lane | 2009-08-07 | 1 | -17/+0 |
| * | Create a multiplexing structure for signals to Postgres child processes. | Tom Lane | 2009-07-31 | 1 | -3/+3 |
| * | Support deferrable uniqueness constraints. | Tom Lane | 2009-07-29 | 2 | -5/+9 |
| * | Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid. | Tom Lane | 2009-07-28 | 1 | -2/+3 |
| * | Extend EXPLAIN to allow generic options to be specified. | Tom Lane | 2009-07-26 | 2 | -20/+27 |
| * | Make backend header files C++ safe | Peter Eisentraut | 2009-07-16 | 2 | -4/+4 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 6 | -24/+24 |
| * | Remove the recently added node types ReloptElem and OptionDefElem in favor | Tom Lane | 2009-04-04 | 1 | -4/+2 |
| * | Allow reloption names to have qualifiers, initially supporting a TOAST | Alvaro Herrera | 2009-02-02 | 1 | -2/+4 |
| * | Support column-level privileges, as required by SQL standard. | Tom Lane | 2009-01-22 | 1 | -2/+3 |
| * | Update comments to reflect that tgenabled is not a boolean anymore. | Heikki Linnakangas | 2009-01-22 | 1 | -1/+5 |
| * | Add vacuum_freeze_table_age GUC option, to control when VACUUM should | Heikki Linnakangas | 2009-01-16 | 1 | -3/+6 |
| * | Include a pointer to the query's source text in QueryDesc structs. This is | Tom Lane | 2009-01-02 | 1 | -3/+5 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 23 | -46/+46 |
| * | SQL/MED catalog manipulation facilities | Peter Eisentraut | 2008-12-19 | 1 | -1/+17 |
| * | Don't reset pg_class.reltuples and relpages in VACUUM, if any pages were | Heikki Linnakangas | 2008-12-17 | 1 | -3/+3 |
| * | Default values for function arguments | Peter Eisentraut | 2008-12-04 | 1 | -2/+2 |
| * | Some infrastructure changes for the upcoming auto-explain contrib module: | Tom Lane | 2008-11-19 | 1 | -1/+4 |
| * | Make relhasrules and relhastriggers work like relhasindex, namely we let | Tom Lane | 2008-11-10 | 1 | -2/+2 |
| * | Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at least | Tom Lane | 2008-11-07 | 1 | -2/+2 |
| * | Reduce the memory footprint of large pending-trigger-event lists, as per my | Tom Lane | 2008-10-24 | 1 | -5/+3 |
| * | Mark SessionReplicationRole as PGDLLIMPORT so it | Magnus Hagander | 2008-09-19 | 1 | -2/+2 |