- 23 Aug, 2005 11 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
Per Alvaro.
-
Bruce Momjian authored
-
- 22 Aug, 2005 9 commits
-
-
Tom Lane authored
after the fact. Fix bug with incorrect test for whether we are at end of logfile segment. Arrange for writes triggered by XLogInsert's is-cache-more-than-half-full test to synchronize with the cache boundaries, so that in long transactions we tend to write alternating halves of the cache rather than randomly chosen portions of it; this saves one more write syscall per cache load.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
erroring out as it has done for the last couple weeks. Document that this form is now ignored because indexes can't usefully have different owners from their parent tables. Fix pg_dump to not generate ALTER OWNER commands for indexes.
-
Tom Lane authored
discussion of getting around this by relaxing the checks made for regular users, but I'm disinclined to toy with the security model right now, so just special-case it for superusers where needed.
-
Bruce Momjian authored
Also improve wording.
-
Bruce Momjian authored
not accepting queries). errmsg("database is not accepting queries to avoid wraparound data loss in database \"%s\"", errhint("Stop the postmaster and use a standalone backend to VACUUM database \"%s\".",
-
Tom Lane authored
chokes on IPv6 addresses, and comment out the IPv6 entry in the default pg_hba.conf if so. Per Andrew Dunstan.
-
Tom Lane authored
indexes all be int, rather than variously int, uint16 and uint32; add some casts where necessary to support large buffer arrays.
-
- 21 Aug, 2005 2 commits
-
-
Tom Lane authored
in postgresql.conf.sample, mark custom_variable_classes as SIGHUP not POSTMASTER to agree with the documentation (I can't see a reason it has to be POSTMASTER so I think the docs are right).
-
Bruce Momjian authored
> * Fix problems with wrong runtime encoding conversion for NLS message files
-
- 20 Aug, 2005 6 commits
-
-
Tom Lane authored
integer lists.
-
Tom Lane authored
to 'Size' (that is, size_t), and install overflow detection checks in it. This allows us to remove the former arbitrary restrictions on NBuffers etc. It won't make any difference in a 32-bit machine, but in a 64-bit machine you could theoretically have terabytes of shared buffers. (How efficiently we could manage 'em remains to be seen.) Similarly, num_temp_buffers, work_mem, and maintenance_work_mem can be set above 2Gb on a 64-bit machine. Original patch from Koichi Suzuki, additional work by moi.
-
Tom Lane authored
idea on consistency grounds, whether or not it really fixes bug #1831. Michael Fuhr
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Tom Lane authored
insufficient paranoia in code that follows t_ctid links. (We must do both because even with VACUUM doing it properly, the intermediate state with a dangling t_ctid link is visible concurrently during lazy VACUUM, and could be seen afterwards if either type of VACUUM crashes partway through.) Also try to improve documentation about what's going on. Patch is a bit bulky because passing the XMAX information around required changing the APIs of some low-level heapam.c routines, but it's not conceptually very complicated. Per trouble report from Teodor and subsequent analysis. This needs to be back-patched, but I'll do that after 8.1 beta is out.
-
- 19 Aug, 2005 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
the right to stand out.
-
- 18 Aug, 2005 6 commits
-
-
Tom Lane authored
-
Tom Lane authored
or OFFSET clauses by using estimate_expression_value(). The main advantage of this is that if the expression is a Param and we have a value for the Param, we'll use that value rather than defaulting. Also, fix some thinkos in the logic for combining LIMIT/OFFSET with an externally supplied tuple fraction (this covers cases like EXISTS(...LIMIT...)). And make sure the results of all this are shown by EXPLAIN. Per a gripe from Merlin Moncure.
-
Bruce Momjian authored
> o Remove unnecessary abstractions in pg_dump source code
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Prevent to_char() on interval from returning meaningless values
-
Bruce Momjian authored
Fix to_char(interval) to return large year/month/day/hour values that are larger than possible timestamp values. Prevent to_char(interval) format specifications that make no sense, like Month. Clean up formatting.c code to more logically handle return lengths.
-
- 17 Aug, 2005 4 commits
-
-
Tom Lane authored
AbortTransaction. This can happen if a backend's InitPostgres transaction fails (eg, because the given username is invalid). Per Alvaro.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
integer with flags.
-