| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add NOWAIT option to SELECT FOR UPDATE/SHARE. | Tom Lane | 2005-08-01 | 1 | -3/+18 |
| * | Add ALTER object SET SCHEMA capability for a limited but useful set of | Tom Lane | 2005-08-01 | 1 | -3/+21 |
| * | Add per-user and per-database connection limit options. | Tom Lane | 2005-07-31 | 1 | -1/+15 |
| * | Add a role property 'rolinherit' which, when false, denotes that the role | Tom Lane | 2005-07-26 | 1 | -1/+2 |
| * | Teach planner about some cases where a restriction clause can be | Tom Lane | 2005-07-02 | 1 | -2/+1 |
| * | Replace pg_shadow and pg_group by new role-capable catalogs pg_authid | Tom Lane | 2005-06-28 | 1 | -69/+45 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 1 | -1/+19 |
| * | Make REINDEX DATABASE do what one would expect, namely reindex all indexes | Tom Lane | 2005-06-22 | 1 | -3/+3 |
| * | Two-phase commit. Original patch by Heikki Linnakangas, with additional | Tom Lane | 2005-06-17 | 1 | -1/+2 |
| * | Simplify the planner's join clause management by storing join clauses | Tom Lane | 2005-06-09 | 1 | -18/+2 |
| * | Remove planner's private fields from Query struct, and put them into | Tom Lane | 2005-06-05 | 1 | -13/+1 |
| * | Implement sharable row-level locks, and use them for foreign key references | Tom Lane | 2005-04-28 | 1 | -2/+4 |
| * | Remove support for OR'd indexscans internal to a single IndexScan plan | Tom Lane | 2005-04-25 | 1 | -13/+12 |
| * | Create executor and planner-backend support for decoupled heap and index | Tom Lane | 2005-04-19 | 1 | -1/+101 |
| * | Add a "USING" clause to DELETE, which is equivalent to the FROM clause | Neil Conway | 2005-04-07 | 1 | -1/+2 |
| * | Merge Resdom nodes into TargetEntry nodes to simplify code and save a | Tom Lane | 2005-04-06 | 1 | -25/+7 |
| * | Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actually | Tom Lane | 2005-03-29 | 1 | -1/+2 |
| * | Allow ALTER FUNCTION to change a function's strictness, volatility, and | Neil Conway | 2005-03-14 | 1 | -1/+15 |
| * | Make the behavior of HAVING without GROUP BY conform to the SQL spec. | Tom Lane | 2005-03-10 | 1 | -4/+5 |
| * | Generalize TRUNCATE to support truncating multiple tables in one | Tom Lane | 2005-01-27 | 1 | -2/+2 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | Instead of supposing (wrongly, in the general case) that the rowtype | Tom Lane | 2004-12-11 | 1 | -1/+19 |
| * | Create 'default_tablespace' GUC variable that supplies a TABLESPACE | Tom Lane | 2004-11-05 | 1 | -2/+1 |
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -9/+9 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Code review for ALTER INDEX patch. | Tom Lane | 2004-08-22 | 1 | -1/+2 |
| * | Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUE | Tom Lane | 2004-08-02 | 1 | -1/+2 |
| * | Remove TABLESPACE option of CREATE SEQUENCE; sequences will now always | Tom Lane | 2004-07-12 | 1 | -2/+1 |
| * | Support renaming of tablespaces, and changing the owners of | Tom Lane | 2004-06-25 | 1 | -15/+19 |
| * | Tablespaces. Alternate database locations are dead, long live tablespaces. | Tom Lane | 2004-06-18 | 1 | -1/+33 |
| * | Support assignment to subfields of composite columns in UPDATE and INSERT. | Tom Lane | 2004-06-09 | 1 | -10/+25 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 1 | -3/+1 |
| * | This patch implement the TODO [ALTER DATABASE foo OWNER TO bar]. | Bruce Momjian | 2004-05-26 | 1 | -1/+15 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 1 | -115/+71 |
| * | Promote row expressions to full-fledged citizens of the expression syntax, | Tom Lane | 2004-05-10 | 1 | -1/+19 |
| * | ALTER TABLE rewrite. New cool stuff: | Tom Lane | 2004-05-05 | 1 | -2/+16 |
| * | Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... END | Tom Lane | 2004-03-17 | 1 | -1/+18 |
| * | Add NOWAIT option to LOCK command | Tatsuo Ishii | 2004-03-11 | 1 | -1/+2 |
| * | Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this time | Tom Lane | 2004-01-14 | 1 | -3/+2 |
| * | Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This is | Neil Conway | 2004-01-10 | 1 | -1/+3 |
| * | Apply the core parts of Dennis Bjorklund's patch to allow function | Tom Lane | 2004-01-06 | 1 | -2/+16 |
| * | Instead of rechecking lossy index operators by putting them into the | Tom Lane | 2004-01-06 | 1 | -1/+12 |
| * | Add the ability to extract OR indexscan conditions from OR-of-AND | Tom Lane | 2004-01-05 | 1 | -3/+4 |
| * | Merge restrictlist_selectivity into clauselist_selectivity by | Tom Lane | 2004-01-04 | 1 | -1/+2 |
| * | Rewrite OR indexscan processing to be more flexible. We can now for the | Tom Lane | 2004-01-04 | 1 | -2/+2 |
| * | Adjust the definition of RestrictInfo's left_relids and right_relids | Tom Lane | 2003-12-30 | 1 | -3/+4 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Get rid of hashkeys field of Hash plan node, since it's redundant with | Tom Lane | 2003-11-25 | 1 | -2/+1 |
| * | Cross-data-type comparisons are now indexable by btrees, pursuant to my | Tom Lane | 2003-11-12 | 1 | -1/+12 |
| * | Add operator strategy and comparison-value datatype fields to ScanKey. | Tom Lane | 2003-11-09 | 1 | -1/+12 |