- 04 Oct, 2006 11 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
Per Bob Friesenhahn's report, this file is not supplied by some versions of libedit, and even when it is supplied it seems to be just a link to readline.h, so we don't need to include it anyway. Also, ensure that we won't try to use a too-old version of Bison. The previous coding would bleat but then use it anyway; better to invoke the 'missing' script if any grammar files need to be rebuilt.
-
Bruce Momjian authored
Zdenek Kotala
-
Bruce Momjian authored
-
Tom Lane authored
gotten rather thoroughly whacked out by careless recent changes: the intended ratio between the two was off by a lot, and the minimum number of shared buffers tried had increased by a lot. Problem exposed by failures on buildfarm members with smaller SHMMAX values.
-
Tom Lane authored
-
Tom Lane authored
provide the bad input, and be sure to mention that we are talking about a tsearch query.
-
Tom Lane authored
-
Michael Meskes authored
Made show.pgc set all variables before displaying them.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 03 Oct, 2006 16 commits
-
-
Tom Lane authored
repeatedly. Now that we don't have to worry about memory leaks from glibc's qsort, we can safely put CHECK_FOR_INTERRUPTS into the tuplesort comparators, as was requested a couple months ago. Also, get rid of non-reentrancy and an extra level of function call in tuplesort.c by providing a variant qsort_arg() API that passes an extra void * argument through to the comparison routine. (We might want to use that in other places too, I didn't look yet.)
-
Bruce Momjian authored
1) Make vcbuild actually build the pgevent dll. 2) Change the pgevent DLL file so it doens't specify ordinal for the functions. You're not supposed to do that. You're actually supposed to declare them as PRIVATE as well, but mingw doesn't support that. VC++ will throw a warning and not an error though, so we can live with it. Magnus Hagander
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
David Fetter
-
Bruce Momjian authored
Euler Taveira de Oliveira
-
Bruce Momjian authored
Andreas Seltenreich
-
Bruce Momjian authored
Andreas Seltenreich
-
Bruce Momjian authored
postgresql.conf. - shared_buffers = 32000kB => 32MB - temp_buffers = 8000kB => 8MB - wal_buffers = 8 => 64kB The code of initdb was a bit modified to write MB-unit values. Values greater than 8000kB are rounded out to MB. GUC_UNIT_XBLOCKS is added for wal_buffers. It is like GUC_UNIT_BLOCKS, but uses XLOG_BLCKSZ instead of BLCKSZ. Also, I cleaned up the test of GUC_UNIT_* flags in preparation to add more unit flags in less bits. ITAGAKI Takahiro
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
defined too late.
-
Bruce Momjian authored
Guillaume Lelarge
-
Bruce Momjian authored
stats_start_collector and stats_row_level to also be on David Wheeler
-
-
Bruce Momjian authored
> * Fix SSL retry to avoid useless repeated connection attempts and > ensuing misleading error messages
-
- 02 Oct, 2006 10 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
< * Use strlcpy() rather than StrNCpy() macro > * Use strlcpy() rather than our StrNCpy() macro
-
Bruce Momjian authored
> > * Use strlcpy() rather than StrNCpy() macro
-
Bruce Momjian authored
Kenneth Marshall
-
Bruce Momjian authored
Simon Riggs
-
Bruce Momjian authored
Robert Treat
-
Bruce Momjian authored
-
Bruce Momjian authored
Drop privileges on startup so servers can be started from an administrative account (Magnus)
-
Bruce Momjian authored
-
Tom Lane authored
declared in the system headers. Per report from Bruce than some BSDen are like this.
-
- 01 Oct, 2006 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
which turns out to be a dominant part of the runtime in scenarios involving lots of parse-time warnings (such as Stephen Frost's example of an INSERT with a lot of backslash-containing strings). There's not a whole lot we can do about the character-at-a-time scanning, but we can at least avoid traversing the query twice.
-
Tom Lane authored
severity. This is to ensure the user can cancel a query that's spitting out lots of notice/warning messages, even if they're coming from a loop that doesn't otherwise contain a CHECK_FOR_INTERRUPTS. Per gripe from Stephen Frost.
-