summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane2006-02-284-8/+14
* Add PG_VERSION_NUM for use by 3rd party applications wanting to test theBruce Momjian2006-02-281-1/+4
* Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane2006-02-281-2/+4
* Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane2006-02-2824-49/+82
* Implement the <> operator for the tid type. Original patch from MarkNeil Conway2006-02-264-5/+9
* Adjust probe for getaddrinfo to cope with macro-ized definitions, suchTom Lane2006-02-211-31/+1
* Improve tuplesort.c to support variable merge order. The original codingTom Lane2006-02-191-1/+3
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-18/+27
* Add support for Windows codepages 1253, 1254, 1255, and 1257 and cleanPeter Eisentraut2006-02-181-2/+6
* Change MemSet to use long instead of int32, for better performance onPeter Eisentraut2006-02-161-13/+13
* Fix bug that allowed any logged-in user to SET ROLE to any other database userTom Lane2006-02-121-1/+2
* Revert patch becaues of locking concerns:Bruce Momjian2006-02-122-14/+2
* Add MSVC support for utility commands and pg_dump.Bruce Momjian2006-02-121-0/+3
* Add contrib/pg_freespacemap to display free space map information.Bruce Momjian2006-02-121-1/+98
* I've created a new shared catalog table pg_shdescription to storeBruce Momjian2006-02-127-8/+98
* Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane2006-02-111-1/+2
* Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian2006-02-112-2/+14
* Fix incorrect addition, subtraction, and overflow checking in newTom Lane2006-02-111-12/+12
* Revert based on Tom's recommendation:Bruce Momjian2006-02-111-3/+1
* Allow VACUUM to complete faster by avoiding scanning the indexes when noBruce Momjian2006-02-111-1/+3
* Update catalog version for INET additions.Bruce Momjian2006-02-111-2/+2
* Add INET/CIDR operators: and, or, not, plus int8, minus int8, and inetBruce Momjian2006-02-113-3/+33
* Change search for default operator classes so that it examines all opclassesTom Lane2006-02-102-18/+3
* Use "bitwise" rather than "binary for AND/OR descriptions in \d, toBruce Momjian2006-02-091-19/+19
* Improve my initial, rather hacky implementation of joins to appendTom Lane2006-02-051-8/+1
* Fix constraint exclusion to work in inherited UPDATE/DELETE queriesTom Lane2006-02-041-2/+3
* DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan2006-02-041-1/+2
* Move thread_test directory from /tools to /test so source-only tarballsBruce Momjian2006-02-041-21/+0
* Teach planner to convert simple UNION ALL subqueries into append relations,Tom Lane2006-02-033-9/+13
* Allow MEMSET_LOOP_LIMIT to be set on a per-platform basis, and turn offBruce Momjian2006-02-032-8/+14
* Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian2006-02-031-2/+2
* Set progname early in the postmaster/postgres binary, rather than doingBruce Momjian2006-02-011-1/+2
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-314-31/+132
* Fix code that checks to see if an index can be considered to match the query'sTom Lane2006-01-291-2/+2
* Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flagTom Lane2006-01-267-39/+31
* Remove the no-longer-useful HashItem/HashItemData level of structure.Tom Lane2006-01-251-10/+2
* Remove the no-longer-useful BTItem/BTItemData level of structure, andTom Lane2006-01-251-39/+19
* Allow row comparisons to be used as indexscan qualifications.Tom Lane2006-01-253-6/+41
* Instead of using a numberOfRequiredKeys count to distinguish requiredTom Lane2006-01-231-9/+13
* Use is_cidr in INET/CIDR structure, rather than the generic 'type'.Bruce Momjian2006-01-231-2/+2
* Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian2006-01-212-3/+6
* It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane2006-01-191-1/+2
* Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane2006-01-181-9/+21
* Add a new system view, pg_cursors, that displays the currently availableNeil Conway2006-01-184-6/+14
* Fix fsync code to test whether F_FULLFSYNC is available, instead ofTom Lane2006-01-172-0/+6
* Change the parameter_types column of the pg_prepared_statements to beNeil Conway2006-01-162-4/+4
* Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane2006-01-142-34/+8
* Add selectivity-calculation code for RowCompareExpr nodes. Simplistic,Tom Lane2006-01-141-1/+4
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-121-2/+2
* Create a standard function pg_sleep() to sleep for a specified amount of time.Tom Lane2006-01-113-4/+7