- 19 Oct, 2006 13 commits
-
-
Tom Lane authored
a fastpath function call.
-
Tom Lane authored
provide a macro so code can still just say qsort). Avoids linker warnings on pickier platforms such as Darwin, and outright failure on MSVC.
-
Tom Lane authored
-
Tom Lane authored
instead of inserting an MSVC dependency.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
< * Improve port/qsort() to handle sorts with 50% unique and 50% duplicate < value [qsort] < < This involves choosing better pivot points for the quicksort. <
-
Tom Lane authored
be NULL ... seems an unsafe assumption.
-
Tom Lane authored
if available (which it usually should be), during processing of Bind and Execute protocol messages. This improves usefulness of log_min_error_statement logging for extended query protocol.
-
Tom Lane authored
from Magnus that MSVC complains about this.
-
Neil Conway authored
-
Tom Lane authored
per Magnus.
-
Tom Lane authored
sin_port in the returned IP address struct when servname is NULL. This has been observed to cause failure to bind the stats collection socket, and could perhaps cause other issues too. Per reports from Brad Nicholson and Chris Browne.
-
- 18 Oct, 2006 3 commits
-
-
Tom Lane authored
that conflict with the OID that we want to use for the new database. This avoids the risk of trying to remove files that maybe we shouldn't remove. Per gripe from Jon Lapham and subsequent discussion of 27-Sep.
-
Tom Lane authored
timezone actually has a daylight-savings rule. This avoids breaking cases that used to work because they went through the DecodePosixTimezone code path. Per contrib regression failures (mea culpa for not running those yesterday...). Also document the already-applied change to allow GMT offsets up to 14 hours.
-
Bruce Momjian authored
-
- 17 Oct, 2006 5 commits
-
-
Tom Lane authored
input routines. Remove the former "DecodePosixTimezone" function in favor of letting the zic code handle POSIX-style zone specs (see tzparse()). In particular this means that "PST+3" now means the same as "-03", whereas it used to mean "-11" --- the zone abbreviation is effectively just a noise word in this syntax. Make sure that all named and POSIX-style zone names will be parsed as a single token. Fix long-standing bogosities in printing and input of fractional-hour timezone offsets (since the tzparse() code will accept these, we'd better make 'em work). Also correct an error in the original coding of the zic-zone-name patch: in "timestamp without time zone" input, zone names are supposed to be allowed but ignored, but the coding was such that the zone changed the interpretation anyway.
-
Bruce Momjian authored
Wheeler.
-
Bruce Momjian authored
related to website development and change the link to the FAQ_DEV.html. Devrim GUNDUZ
-
Bruce Momjian authored
Michael Paesold
-
Tom Lane authored
-
- 16 Oct, 2006 7 commits
-
-
Peter Eisentraut authored
-
Tom Lane authored
example SET TIME ZONE 'america/new_york' works now. This seems a good idea on general user-friendliness grounds, and is part of the solution to the timestamp-input parsing problems I noted recently.
-
Bruce Momjian authored
Michael Paesold
-
Bruce Momjian authored
Michael Glaesemann
-
Bruce Momjian authored
Devrim GUNDUZ
-
Bruce Momjian authored
Update find_gt_lt to allow grep parameters to be passed into it.
-
Peter Eisentraut authored
Also cut back on excessive use of *** to decorate configure error messages. If it's an error message, you are sure to see it without any decoration.
-
- 15 Oct, 2006 3 commits
-
-
Tom Lane authored
modules; the first try was not usable in EXEC_BACKEND builds (e.g., Windows). Instead, just provide some entry points to increase the allocation requests during postmaster start, and provide a dedicated LWLock that can be used to synchronize allocation operations performed by backends. Per discussion with Marc Munro.
-
Tom Lane authored
are marked as UTF8 when the database encoding is UTF8. This should avoid inconsistencies like that exhibited in bug #2683 from Vitali Stupin.
-
Bruce Momjian authored
Jun Kuwamura
-
- 14 Oct, 2006 2 commits
-
-
Bruce Momjian authored
channel to the lists of IRC channels, fixes a typo in the OID's question, and corrects the PGCluster's project name. Euler Taveira de Oliveira
-
Tom Lane authored
one of the program's core data structures, make use of the existing ability to selectively exclude TOC items by ID. Slightly more code but much less likely to create future maintenance problems.
-
- 13 Oct, 2006 6 commits
-
-
Tom Lane authored
-
Peter Eisentraut authored
and neither is "|" or "\|" in basic regular expressions.
-
Bruce Momjian authored
Jun Kuwamura
-
Tom Lane authored
-
Bruce Momjian authored
Hiroshi Saito
-
Teodor Sigaev authored
1) pgwin32_waitforsinglesocket(): WaitForMultipleObjectsEx now called with finite timeout (100ms) in case of FP_WRITE and UDP socket. If timeout occurs then pgwin32_waitforsinglesocket() tries to write empty packet goes to WaitForMultipleObjectsEx again. 2) pgwin32_send(): add loop around WSASend and pgwin32_waitforsinglesocket(). The reason is: for overlapped socket, 'ok' result from pgwin32_waitforsinglesocket() isn't guarantee that socket is still free, it can become busy again and following WSASend call will fail with WSAEWOULDBLOCK error. See http://archives.postgresql.org/pgsql-hackers/2006-10/msg00561.php
-
- 12 Oct, 2006 1 commit
-
-
Bruce Momjian authored
< o Issue a notice if CREATE TABLE ... ON COMMIT { DELETE ROWS | < DROP } is issued outside a multi-statement transaction
-