- 21 Dec, 2006 3 commits
-
-
Peter Eisentraut authored
-
Teodor Sigaev authored
-
Peter Eisentraut authored
-
- 20 Dec, 2006 1 commit
-
-
Bruce Momjian authored
-
- 19 Dec, 2006 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
< o Improve xid wraparound detection by recording per-table rather < than per-database
-
Andrew Dunstan authored
Interpret a dbName param to PQsetdbLogin as a conninfo string if it contains an = sign. Tom Lane and Andrew Dunstan.
-
- 18 Dec, 2006 2 commits
-
-
Tom Lane authored
operator strategy numbers, ie, GiST and GIN. This is almost cosmetic enough to not need a catversion bump, but since the opr_sanity regression test has to change in sync with the catalog entry, I figured I'd better do one.
-
Andrew Dunstan authored
-
- 17 Dec, 2006 2 commits
-
-
Bruce Momjian authored
< While PostgreSQL clients runs fine limited-resource environments, the > While PostgreSQL clients runs fine in limited-resource environments, the
-
Bruce Momjian authored
< * Make CLUSTER preserve recently-dead tuples per MVCC requirements > o Make CLUSTER preserve recently-dead tuples per MVCC requirements
-
- 16 Dec, 2006 1 commit
-
-
Andrew Dunstan authored
-
- 15 Dec, 2006 9 commits
-
-
Tom Lane authored
are all in new-in-8.2 logic associated with indexability of ScalarArrayOpExpr (IN-clauses) or amortization of indexscan costs across repeated indexscans on the inside of a nestloop. In particular: Fix some logic errors in the estimation for multiple scans induced by a ScalarArrayOpExpr indexqual. Include a small cost component in bitmap index scans to reflect the costs of manipulating the bitmap itself; this is mainly to prevent a bitmap scan from appearing to have the same cost as a plain indexscan for fetching a single tuple. Also add a per-index-scan-startup CPU cost component; while prior releases were clearly too pessimistic about the cost of repeated indexscans, the original 8.2 coding allowed the cost of an indexscan to effectively go to zero if repeated often enough, which is overly optimistic. Pay some attention to index correlation when estimating costs for a nestloop inner indexscan: this is significant when the plan fetches multiple heap tuples per iteration, since high correlation means those tuples are probably on the same or adjacent heap pages.
-
Tom Lane authored
was removed in an unexplainable moment of brain fade.
-
Bruce Momjian authored
properly. Remove SGML docs about openjade performance patch, and instead add comment in style sheet where indenting code is commented out. Backpatch to 8.2.X.
-
Bruce Momjian authored
> > * Embedded server (not wanted) > > While PostgreSQL clients runs fine limited-resource environments, the > server requires multiple processes and a stable pool of resources to > run reliabily and efficiently. Stripping down the PostgreSQL server > to run in the same process address space as the client application > would add too much complexity and failure cases.
-
Bruce Momjian authored
< * Consider changing documentation from SGML to XML > * Consider changing documentation format from SGML to XML < http://archives.postgresql.org/pgsql-docs/2006-12/msg00033.php > http://archives.postgresql.org/pgsql-docs/2006-12/msg00152.php
-
Bruce Momjian authored
> > * Consider changing documentation from SGML to XML > > http://archives.postgresql.org/pgsql-docs/2006-12/msg00033.php >
-
Bruce Momjian authored
time.
-
Bruce Momjian authored
-
Bruce Momjian authored
correct, add comments about other multiple runs in the Makefile. Backpatch to 8.2.X.
-
- 14 Dec, 2006 3 commits
-
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
necessary.
-
- 13 Dec, 2006 1 commit
-
-
Tom Lane authored
-
- 12 Dec, 2006 6 commits
-
-
Bruce Momjian authored
< * Have EXPLAIN ANALYZE highlight poor optimizer estimates > * Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and > actual row counts differ by a specified percentage
-
Tom Lane authored
joinclause doesn't use any outer-side vars) requires a "bushy" plan to be created. The normal heuristic to avoid joins with no joinclause has to be overridden in that case. Problem is new in 8.2; before that we forced the outer join order anyway. Per example from Teodor.
-
Bruce Momjian authored
-
Bruce Momjian authored
< * Allow REINDEX CONCURRENTLY
-
Bruce Momjian authored
> * Allow REINDEX CONCURRENTLY
-
Peter Eisentraut authored
works, but some platform templates overwrote it without asking.
-
- 11 Dec, 2006 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
NULLs.
-
- 10 Dec, 2006 6 commits
-
-
Tom Lane authored
representing externally-supplied values, since the APIs that carry such values only specify type not typmod. However, for PARAM_SUBLINK Params it is handy to carry the typmod of the sublink's output column. This is a much cleaner solution for the recently reported 'could not find pathkey item to sort' and 'failed to find unique expression in subplan tlist' bugs than my original 8.2-compatible patch. Besides, someday we might want to support typmods for external parameters ...
-
Peter Eisentraut authored
US letter paper formats.
-
Peter Eisentraut authored
file (instead of repeating), add XSL-FO stylesheet and appropriate make rules.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
the build time by what seemed like infinity.
-
Peter Eisentraut authored
build rules.
-
- 08 Dec, 2006 1 commit
-
-
Tom Lane authored
in normal operation, and we can avoid rewriting pg_control at every log segment switch if we don't insist that these values be valid. Reducing the number of pg_control updates is a good idea for both performance and reliability. It does make pg_resetxlog's life a bit harder, but that seems a good tradeoff; and anyway the change to pg_resetxlog amounts to automating something people formerly needed to do by hand, namely look at the existing pg_xlog files to make sure the new WAL start point was past them. In passing, change the wording of xlog.c's "database system was interrupted" messages: describe the pg_control timestamp as "last known up at" rather than implying it is the exact time of service interruption. With this change the timestamp will generally be the time of the last checkpoint, which could be many minutes before the failure; and we've already seen indications that people tend to misinterpret the old wording. initdb forced due to change in pg_control layout. Simon Riggs and Tom Lane
-