| Commit message (Expand) | Author | Age | Files | Lines |
| * | Allow the syntax CREATE TYPE foo, with no parameters, to permit explicit | Tom Lane | 2006-02-28 | 4 | -8/+14 |
| * | Add PG_VERSION_NUM for use by 3rd party applications wanting to test the | Bruce Momjian | 2006-02-28 | 1 | -1/+4 |
| * | Teach nodeSort and nodeMaterial to optimize out unnecessary overhead | Tom Lane | 2006-02-28 | 1 | -2/+4 |
| * | Extend the ExecInitNode API so that plan nodes receive a set of flag | Tom Lane | 2006-02-28 | 24 | -49/+82 |
| * | Implement the <> operator for the tid type. Original patch from Mark | Neil Conway | 2006-02-26 | 4 | -5/+9 |
| * | Adjust probe for getaddrinfo to cope with macro-ized definitions, such | Tom Lane | 2006-02-21 | 1 | -31/+1 |
| * | Improve tuplesort.c to support variable merge order. The original coding | Tom Lane | 2006-02-19 | 1 | -1/+3 |
| * | Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT is | Neil Conway | 2006-02-19 | 1 | -18/+27 |
| * | Add support for Windows codepages 1253, 1254, 1255, and 1257 and clean | Peter Eisentraut | 2006-02-18 | 1 | -2/+6 |
| * | Change MemSet to use long instead of int32, for better performance on | Peter Eisentraut | 2006-02-16 | 1 | -13/+13 |
| * | Fix bug that allowed any logged-in user to SET ROLE to any other database user | Tom Lane | 2006-02-12 | 1 | -1/+2 |
| * | Revert patch becaues of locking concerns: | Bruce Momjian | 2006-02-12 | 2 | -14/+2 |
| * | Add MSVC support for utility commands and pg_dump. | Bruce Momjian | 2006-02-12 | 1 | -0/+3 |
| * | Add contrib/pg_freespacemap to display free space map information. | Bruce Momjian | 2006-02-12 | 1 | -1/+98 |
| * | I've created a new shared catalog table pg_shdescription to store | Bruce Momjian | 2006-02-12 | 7 | -8/+98 |
| * | Skip ambulkdelete scan if there's nothing to delete and the index is not | Tom Lane | 2006-02-11 | 1 | -1/+2 |
| * | Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME | Bruce Momjian | 2006-02-11 | 2 | -2/+14 |
| * | Fix incorrect addition, subtraction, and overflow checking in new | Tom Lane | 2006-02-11 | 1 | -12/+12 |
| * | Revert based on Tom's recommendation: | Bruce Momjian | 2006-02-11 | 1 | -3/+1 |
| * | Allow VACUUM to complete faster by avoiding scanning the indexes when no | Bruce Momjian | 2006-02-11 | 1 | -1/+3 |
| * | Update catalog version for INET additions. | Bruce Momjian | 2006-02-11 | 1 | -2/+2 |
| * | Add INET/CIDR operators: and, or, not, plus int8, minus int8, and inet | Bruce Momjian | 2006-02-11 | 3 | -3/+33 |
| * | Change search for default operator classes so that it examines all opclasses | Tom Lane | 2006-02-10 | 2 | -18/+3 |
| * | Use "bitwise" rather than "binary for AND/OR descriptions in \d, to | Bruce Momjian | 2006-02-09 | 1 | -19/+19 |
| * | Improve my initial, rather hacky implementation of joins to append | Tom Lane | 2006-02-05 | 1 | -8/+1 |
| * | Fix constraint exclusion to work in inherited UPDATE/DELETE queries | Tom Lane | 2006-02-04 | 1 | -2/+3 |
| * | DROP IF EXISTS for ROLE/USER/GROUP | Andrew Dunstan | 2006-02-04 | 1 | -1/+2 |
| * | Move thread_test directory from /tools to /test so source-only tarballs | Bruce Momjian | 2006-02-04 | 1 | -21/+0 |
| * | Teach planner to convert simple UNION ALL subqueries into append relations, | Tom Lane | 2006-02-03 | 3 | -9/+13 |
| * | Allow MEMSET_LOOP_LIMIT to be set on a per-platform basis, and turn off | Bruce Momjian | 2006-02-03 | 2 | -8/+14 |
| * | Update random() usage so ranges are inclusive/exclusive as required. | Bruce Momjian | 2006-02-03 | 1 | -2/+2 |
| * | Set progname early in the postmaster/postgres binary, rather than doing | Bruce Momjian | 2006-02-01 | 1 | -1/+2 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 4 | -31/+132 |
| * | Fix code that checks to see if an index can be considered to match the query's | Tom Lane | 2006-01-29 | 1 | -2/+2 |
| * | Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flag | Tom Lane | 2006-01-26 | 7 | -39/+31 |
| * | Remove the no-longer-useful HashItem/HashItemData level of structure. | Tom Lane | 2006-01-25 | 1 | -10/+2 |
| * | Remove the no-longer-useful BTItem/BTItemData level of structure, and | Tom Lane | 2006-01-25 | 1 | -39/+19 |
| * | Allow row comparisons to be used as indexscan qualifications. | Tom Lane | 2006-01-25 | 3 | -6/+41 |
| * | Instead of using a numberOfRequiredKeys count to distinguish required | Tom Lane | 2006-01-23 | 1 | -9/+13 |
| * | Use is_cidr in INET/CIDR structure, rather than the generic 'type'. | Bruce Momjian | 2006-01-23 | 1 | -2/+2 |
| * | Add GRANT ON SEQUENCE syntax to support sequence-only permissions. | Bruce Momjian | 2006-01-21 | 2 | -3/+6 |
| * | It turns out that TablespaceCreateDbspace fails badly if a relcache flush | Tom Lane | 2006-01-19 | 1 | -1/+2 |
| * | Modify pgstats code to reduce performance penalties from oversized stats data | Tom Lane | 2006-01-18 | 1 | -9/+21 |
| * | Add a new system view, pg_cursors, that displays the currently available | Neil Conway | 2006-01-18 | 4 | -6/+14 |
| * | Fix fsync code to test whether F_FULLFSYNC is available, instead of | Tom Lane | 2006-01-17 | 2 | -0/+6 |
| * | Change the parameter_types column of the pg_prepared_statements to be | Neil Conway | 2006-01-16 | 2 | -4/+4 |
| * | Some minor code cleanup, falling out from the removal of rtree. SK_NEGATE | Tom Lane | 2006-01-14 | 2 | -34/+8 |
| * | Add selectivity-calculation code for RowCompareExpr nodes. Simplistic, | Tom Lane | 2006-01-14 | 1 | -1/+4 |
| * | Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted by | Tom Lane | 2006-01-12 | 1 | -2/+2 |
| * | Create a standard function pg_sleep() to sleep for a specified amount of time. | Tom Lane | 2006-01-11 | 3 | -4/+7 |