| Commit message (Expand) | Author | Age | Files | Lines |
| * | Restructure operator classes to allow improved handling of cross-data-type | Tom Lane | 2006-12-23 | 1 | -2/+2 |
| * | Catalog version bump for SQL/XML changes. | Peter Eisentraut | 2006-12-21 | 1 | -2/+2 |
| * | Set pg_am.amstrategies to zero for index AMs that don't have fixed | Tom Lane | 2006-12-18 | 1 | -2/+2 |
| * | Add a paramtypmod field to Param nodes. This is dead weight for Params | Tom Lane | 2006-12-10 | 1 | -2/+2 |
| * | Add a txn_start column to pg_stat_activity. This makes it easier to | Neil Conway | 2006-12-06 | 1 | -2/+2 |
| * | Change pg_stat_all_tables and sister views to put the recently-added | Tom Lane | 2006-11-24 | 1 | -2/+2 |
| * | Fix recently-understood problems with handling of XID freezing, particularly | Tom Lane | 2006-11-05 | 1 | -2/+2 |
| * | Add built-in userlock manipulation functions to replace the former | Tom Lane | 2006-09-18 | 1 | -2/+2 |
| * | Rename the recently-added pg_timezonenames view to pg_timezone_abbrevs, | Tom Lane | 2006-09-16 | 1 | -2/+2 |
| * | Add a couple of information functions to support direct checks on whether | Tom Lane | 2006-09-14 | 1 | -2/+2 |
| * | Rename contains/contained-by operators to @> and <@, per discussion that | Tom Lane | 2006-09-10 | 1 | -2/+2 |
| * | Get rid of the separate RULE privilege for tables: now only a table's owner | Tom Lane | 2006-09-05 | 1 | -2/+2 |
| * | Add the ability to create indexes 'concurrently', that is, without | Tom Lane | 2006-08-25 | 1 | -2/+2 |
| * | Fix all known problems with pg_dump's handling of serial sequences | Tom Lane | 2006-08-21 | 1 | -2/+2 |
| * | Add a 'waiting' column to pg_stat_activity to carry the same information | Tom Lane | 2006-08-19 | 1 | -2/+2 |
| * | Implement archive_timeout feature to force xlog file switches to occur no more | Tom Lane | 2006-08-17 | 1 | -2/+2 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 1 | -2/+2 |
| * | Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged have | Tom Lane | 2006-08-10 | 1 | -2/+2 |
| * | Add support for forcing a switch to a new xlog file; cause such a switch | Tom Lane | 2006-08-06 | 1 | -2/+2 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 1 | -2/+2 |
| * | Change the relation_open protocol so that we obtain lock on a relation | Tom Lane | 2006-07-31 | 1 | -2/+2 |
| * | Change the bootstrap sequence so that toast tables for system catalogs are | Tom Lane | 2006-07-31 | 1 | -2/+2 |
| * | SQL2003-standard statistical aggregates, by Sergey Koposov. I've added only | Tom Lane | 2006-07-28 | 1 | -2/+2 |
| * | Aggregate functions now support multiple input arguments. I also took | Tom Lane | 2006-07-27 | 1 | -2/+2 |
| * | Code review for bigint-LIMIT patch. Fix missed planner dependency, | Tom Lane | 2006-07-26 | 1 | -2/+2 |
| * | Remove hard-wired lists of timezone abbreviations in favor of providing | Tom Lane | 2006-07-25 | 1 | -2/+2 |
| * | Add the full set of comparison functions for type TID, including a btree | Tom Lane | 2006-07-21 | 1 | -2/+2 |
| * | Add support to GIN for =(anyarray,anyarray) operation | Teodor Sigaev | 2006-07-11 | 1 | -2/+2 |
| * | Improve vacuum code to track minimum Xids per table instead of per database. | Alvaro Herrera | 2006-07-10 | 1 | -2/+2 |
| * | Code review for FILLFACTOR patch. Change WITH grammar as per earlier | Tom Lane | 2006-07-03 | 1 | -2/+2 |
| * | Add FILLFACTOR to CREATE INDEX. | Bruce Momjian | 2006-07-02 | 1 | -2/+2 |
| * | * Add support NULL to GiST. | Teodor Sigaev | 2006-05-24 | 1 | -2/+2 |
| * | Add last-vacuum/analyze-time columns to the stats collector, both manual and | Alvaro Herrera | 2006-05-19 | 1 | -2/+2 |
| * | Change catalog version due to WAL protocol changes in GiST | Teodor Sigaev | 2006-05-17 | 1 | -2/+2 |
| * | Clean up API for ambulkdelete/amvacuumcleanup as per today's discussion. | Tom Lane | 2006-05-02 | 1 | -2/+2 |
| * | Add GIN opclases for another types | Teodor Sigaev | 2006-05-02 | 1 | -2/+2 |
| * | GIN: Generalized Inverted iNdex. | Teodor Sigaev | 2006-05-02 | 1 | -2/+2 |
| * | Improve the representation of FOR UPDATE/FOR SHARE so that we can | Tom Lane | 2006-04-30 | 1 | -2/+2 |
| * | Add GRANT CONNECTION ON DATABASE, to be used in addition to pg_hba.conf. | Bruce Momjian | 2006-04-30 | 1 | -2/+2 |
| * | Move ltree parentsel() selectivity function into /contrib/ltree. | Bruce Momjian | 2006-04-26 | 1 | -2/+2 |
| * | Update catalog version for ltree changes. | Bruce Momjian | 2006-04-26 | 1 | -2/+2 |
| * | Add statement_timestamp(), clock_timestamp(), and | Bruce Momjian | 2006-04-25 | 1 | -2/+2 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 1 | -2/+2 |
| * | Fix a bunch of problems with domains by making them use special input functions | Tom Lane | 2006-04-05 | 1 | -2/+2 |
| * | Clean up representation of function RTEs for functions returning RECORD. | Tom Lane | 2006-03-16 | 1 | -2/+2 |
| * | Implement 4 new aggregate functions from SQL2003. Specifically: var_pop(), | Neil Conway | 2006-03-10 | 1 | -2/+2 |
| * | Attached is the new patch. To summarize: | Bruce Momjian | 2006-03-06 | 1 | -2/+2 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 1 | -2/+2 |
| * | Allow the syntax CREATE TYPE foo, with no parameters, to permit explicit | Tom Lane | 2006-02-28 | 1 | -2/+2 |
| * | Implement the <> operator for the tid type. Original patch from Mark | Neil Conway | 2006-02-26 | 1 | -2/+2 |