- 04 Aug, 2007 1 commit
-
-
Tom Lane authored
displayed in the postmaster log. This avoids Windows-specific problems with localized time zone names that are in the wrong encoding, and generally seems like a good idea to forestall other potential platform-dependent issues. To preserve the existing behavior that all backends will log in the same time zone, create a new GUC variable log_timezone that can only be changed on a system-wide basis, and reference log-related calculations to that zone instead of the TimeZone variable. This fixes the issue reported by Hiroshi Saito that timestamps printed by xlog.c startup could be improperly localized on Windows. We still need a simpler patch for that problem in the back branches, however.
-
- 03 Aug, 2007 2 commits
-
-
Tom Lane authored
not bothering to initialize is_autovacuum for regular backends, meaning there was a significant chance of the postmaster prematurely sending them SIGTERM during database shutdown. Also, leaving the cancel key unset for an autovac worker meant that any client could send it SIGINT, which doesn't sound especially good either.
-
Magnus Hagander authored
some bad data leftover in win32.mak. Per request from Hiroshi Saito.
-
- 02 Aug, 2007 3 commits
-
-
Andrew Dunstan authored
so that we will be able to create a cookie for all processes for CSVlogs. It is set wherever MyProcPid is set. Take the opportunity to remove the now unnecessary session-only restriction on the %s and %c escapes in log_line_prefix.
-
Andrew Dunstan authored
Make sure syslogPipe runs in binary mode on Windows to avoid corrupting the pipe chunking protocol. Backport to 8.0
-
Neil Conway authored
normal operation, but tuplestore_end() ought to do what it claims to do.
-
- 01 Aug, 2007 5 commits
-
-
Bruce Momjian authored
< * Allow buffered WAL writes and fsync
-
Tom Lane authored
before reporting a transaction committed. Data consistency is still guaranteed (unlike setting fsync = off), but a crash may lose the effects of the last few transactions. Patch by Simon, some editorialization by Tom.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 31 Jul, 2007 3 commits
-
-
Tom Lane authored
clauses in which one side or the other references both sides of the join cannot be removed as redundant, because that expression won't have been constrained below the join. Per report from Sergey Burladyan. CVS HEAD does not contain this bug due to EquivalenceClass rewrite, but it seems wise to include the regression test for it anyway.
-
Tom Lane authored
simplify a bit further.
-
Tom Lane authored
never worked because fmgr_security_definer() neglected to pass the fn_expr information through. Per report from Viatcheslav Kalinin.
-
- 27 Jul, 2007 2 commits
-
-
Neil Conway authored
ExecRelationIsTargetRelation() to check if the relation is a target rel, rather than scanning through the result relation array ourselves.
-
Peter Eisentraut authored
found by Michael Glaesemann
-
- 26 Jul, 2007 1 commit
-
-
Tom Lane authored
with the recent patch to log temp file sizes at removal time. Doesn't seem worth fixing since it's unused. In passing, make a few elog messages conform to the message style guide.
-
- 25 Jul, 2007 9 commits
-
-
Tom Lane authored
named pg_toast_temp_nnn, alongside the pg_temp_nnn schemas used for the temp tables themselves. This allows low-level code such as the relcache to recognize that these tables are indeed temporary, which enables various optimizations such as not WAL-logging changes and using local rather than shared buffers for access. Aside from obvious performance benefits, this provides a solution to bug #3483, in which other backends unexpectedly held open file references to temporary tables. The scheme preserves the property that TOAST tables are not in any schema that's normally in the search path, so they don't conflict with user table names. initdb forced because of changes in system view definitions.
-
Tom Lane authored
supposed to be included when using mkdir().
-
Tom Lane authored
a few queries. Should fix buildfarm failures arising from new, more aggressive autovac settings.
-
Michael Meskes authored
-
Magnus Hagander authored
third party includes (like tcl) that define DLLIMPORT.
-
Magnus Hagander authored
Hiroshi Saito
-
Magnus Hagander authored
warns about things that aren't wrong.
-
Magnus Hagander authored
-
Neil Conway authored
sugar for PL/PgSQL set-returning functions that want to return the result of evaluating a query; it should also be more efficient than repeated RETURN NEXT statements. Based on an earlier patch from Pavel Stehule.
-
- 24 Jul, 2007 5 commits
-
-
Tom Lane authored
checking whether an IS NULL/IS NOT NULL clause is implied or refuted by a strict function. Per example from Dawid Kuroczko. Backpatch to 8.2 since this is arguably a performance bug.
-
Magnus Hagander authored
-
Magnus Hagander authored
by dynamically loading the function that's missing from the MingW headers and library.
-
Tom Lane authored
and fsync WAL at convenient intervals. For the moment it just tries to offload this work from backends, but soon it will be responsible for guaranteeing a maximum delay before asynchronously-committed transactions will be flushed to disk. This is a portion of Simon Riggs' async-commit patch, committed to CVS separately because a background WAL writer seems like it might be a good idea independently of the async-commit feature. I rebased walwriter.c on bgwriter.c because it seemed like a more appropriate way of handling signals; while the startup/shutdown logic in postmaster.c is more like autovac because we want walwriter to quit before we start the shutdown checkpoint.
-
Alvaro Herrera authored
I/O utilization, per discussion. While at it, lower the autovacuum vacuum and analyze threshold values to 50 tuples. It is a bit higher (i.e. more conservative) than what I originally proposed but much better than the old values for small tables.
-
- 23 Jul, 2007 5 commits
-
-
Tom Lane authored
whereas in the backend it's been 64 for some time. Hasn't mattered because no actual tags exceed 40 bytes, but for consistency they should be alike.
-
Magnus Hagander authored
In passing, change functions that passedin both PGconn and parts of it to just pass in the PGconn.
-
Alvaro Herrera authored
Jim Nasby.
-
Magnus Hagander authored
-
Magnus Hagander authored
against a Unix server, and Windows-specific server-side authentication using SSPI "negotiate" method (Kerberos or NTLM). Only builds properly with MSVC for now.
-
- 21 Jul, 2007 2 commits
-
-
Tom Lane authored
log_min_error_statement is active and there is some problem in logging the current query string; for example, that it's too long to include in the log message without running out of memory. This problem has existed since the log_min_error_statement feature was introduced. No doubt the reason it wasn't detected long ago is that 8.2 is the first release that defaults log_min_error_statement to less than PANIC level. Per report from Bill Moran.
-
Tom Lane authored
Per request from Luca Ferrari.
-
- 20 Jul, 2007 2 commits
-
-
Peter Eisentraut authored
-
Tom Lane authored
truncated relation was deleted later in the WAL sequence. Since replay normally auto-creates a relation upon its first reference by a WAL log entry, failure is seen only if the truncate entry happens to be the first reference after the checkpoint we're restarting from; which is a pretty unusual case but of course not impossible. Fix by making truncate entries auto-create like the other ones do. Per report and test case from Dharmendra Goyal.
-