aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAge
* Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian2006-02-03
* Prevent COPY from using newline or carriage return as delimiter or null.Bruce Momjian2006-02-03
* Add code comment about Linux stack randomization and shared memory.Bruce Momjian2006-02-01
* Set progname early in the postmaster/postgres binary, rather than doingBruce Momjian2006-02-01
* Allow %TYPE to be used with SETOF, per gripe from Murat Tasan.Tom Lane2006-01-31
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-31
* Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane2006-01-30
* When building a bitmap scan, must copy the bitmapqualorig expression treeTom Lane2006-01-29
* Fix Assert that's no longer correct now that RowCompareExpr is indexable.Tom Lane2006-01-29
* Fix code that checks to see if an index can be considered to match the query'sTom Lane2006-01-29
* Suppress signed-vs-unsigned-char warning.Tom Lane2006-01-26
* Fix display of whole-row Var appearing at the top level of a SELECT list.Tom Lane2006-01-26
* Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flagTom Lane2006-01-26
* Remove the no-longer-useful HashItem/HashItemData level of structure.Tom Lane2006-01-25
* Remove the no-longer-useful BTItem/BTItemData level of structure, andTom Lane2006-01-25
* Allow row comparisons to be used as indexscan qualifications.Tom Lane2006-01-25
* Update regression error message for NUMERIC range overflow. Display "1"Bruce Momjian2006-01-25
* Improve error message when NUMERIC precision is exceeded.Bruce Momjian2006-01-25
* Fix unportable usage of socklen_t: should use ACCEPT_TYPE_ARG3 macroTom Lane2006-01-24
* Instead of using a numberOfRequiredKeys count to distinguish requiredTom Lane2006-01-23
* Prototype fix for typo.Bruce Momjian2006-01-23
* Use is_cidr in INET/CIDR structure, rather than the generic 'type'.Bruce Momjian2006-01-23
* Fix alias-for-target-table-of-UPDATE-or-DELETE patch so that alias canTom Lane2006-01-22
* Allow an optional alias for the target table to be specified for UPDATENeil Conway2006-01-22
* Repair longstanding bug in slru/clog logic: it is possible for two backendsTom Lane2006-01-21
* Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian2006-01-21
* Fix thinko in autovacuum's test to skip temp tables: want to skip anyTom Lane2006-01-20
* Add some test scaffolding to allow cache-flush stress testing (and I doTom Lane2006-01-19
* Avoid crashing if relcache flush occurs while trying to load data into anTom Lane2006-01-19
* It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane2006-01-19
* Fix a tiny memory leak (one List header) in RelationCacheInvalidate().Tom Lane2006-01-19
* Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane2006-01-18
* Add a new system view, pg_cursors, that displays the currently availableNeil Conway2006-01-18
* Fix fsync code to test whether F_FULLFSYNC is available, instead ofTom Lane2006-01-17
* Improve comments about btree's use of ScanKey data structures: thereTom Lane2006-01-17
* Change the parameter_types column of the pg_prepared_statements to beNeil Conway2006-01-16
* Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway2006-01-15
* Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane2006-01-14
* Add selectivity-calculation code for RowCompareExpr nodes. Simplistic,Tom Lane2006-01-14
* Remove logic in XactLockTableWait() that attempted to mark a crashedTom Lane2006-01-13
* Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane2006-01-13
* Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane2006-01-13
* We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway2006-01-12
* mbutils was previously doing some allocations, including invokingNeil Conway2006-01-12
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-12
* Create a standard function pg_sleep() to sleep for a specified amount of time.Tom Lane2006-01-11
* Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway2006-01-11
* Remove a confusing pair of parentheses.Neil Conway2006-01-11
* Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane2006-01-10
* Improve patternsel() by applying the operator itself to each valueTom Lane2006-01-10