summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2004-08-11Fix broken parsing of CREATE TABLE AS (looks like a mis-sync with mainTom Lane
parser).
2004-08-11Avoid crashing when restoring a saved GUC session_authorization valueTom Lane
that refers to a now-deleted userid. Per gripe from Chris Ochs.
2004-08-11Add PQserverVersion() to libpq to provide more-convenient access toTom Lane
the server version number. This commit also removes bogus DOS line endings from libpqddll.def. Greg Sabino Mullane
2004-08-11Work around broken strtod() that's present in many Solaris releases.Tom Lane
Thanks to Michael Fuhr for identifying the problem.
2004-08-11Fix function definition that somehow missed being ANSI-fied, and alignTom Lane
it with previous prototype to suppress complaints from picky compilers, per report from Scott Bailey. Also, remove substitute strerror definition --- not needed, since we link this with libpgport.
2004-08-11Allow compilation when CODESET is not defined (OpenBSD).Peter Eisentraut
2004-08-11Translation updatePeter Eisentraut
2004-08-11Add translation from 7.4 branch to head.Peter Eisentraut
2004-08-11Fix failure to guarantee that a checkpoint will write out pg_clog updatesTom Lane
for transaction commits that occurred just before the checkpoint. This is an EXTREMELY serious bug --- kudos to Satoshi Okada for creating a reproducible test case to prove its existence.
2004-08-10Set DYLD_LIBRARY_PATH so that 'make check' works without priorTom Lane
'make install' on OS X. Per suggestion from Adam Witney.
2004-08-10New translationPeter Eisentraut
2004-08-10Translation updatesPeter Eisentraut
2004-08-10Translation updatePeter Eisentraut
2004-08-10Translation updatesPeter Eisentraut
2004-08-10Translation updatePeter Eisentraut
2004-08-09syslogger.c needs <sys/time.h> on some platforms, per Greg Mullane.Tom Lane
2004-08-09Path-mangling logic was failing to account for paths containing mentionsTom Lane
of '.' or '..'. Extend canonicalize_path() to trim off trailing occurrences of these things, and use it to fix up paths where needed (which I think is only after places where we trim the last path component, but maybe some others will turn up). Fixes Josh's complaint that './initdb' does not work.
2004-08-09When expanding %p in archive_command or restore_command, translateTom Lane
slashes to backslashes #ifdef WIN32. This is to cope with the fact that Windows seems exceedingly unfriendly to slashes in shell commands, as per recent discussion.
2004-08-09Fix Win32 pg_dumpall check.REL8_0_0BETA1Bruce Momjian
2004-08-09Improve comment.Bruce Momjian
2004-08-09Stamp libpq.rc with 8.0 version.Bruce Momjian
2004-08-08Make listen_addresses be a comma-separated list instead of a space-separatedTom Lane
list. More consistent with our other list-containing GUC variables.
2004-08-08Document background writer control parameters, do some editorial workTom Lane
on other recent changes in runtime parameter list.
2004-08-08If these are ifdef WIN32 in the .c file, should be so in .h as well.Tom Lane
2004-08-08Disable vacuum delay, as discussed on hackers.Bruce Momjian
2004-08-08Fix compiler warning in the proper way.Bruce Momjian
2004-08-08Supress warning about zero-length format string.Bruce Momjian
2004-08-08Allow libpgport to call memory allocation routines even thoughBruce Momjian
CurrentMemoryContext is DLLIMPORT on Win32. Work around that by creating stubs in the backend for palloc/pstrdup. Also fix pg_dumpall to do proper quoting on Win32.
2004-08-08More Win32 zic build cleanups now that we have symlinks, it needs help.Bruce Momjian
2004-08-08Adjust defines to be consistent.Bruce Momjian
2004-08-08Tighened up syntax checking of array input processing considerably. Junk thatJoe Conway
was previously allowed in odd places with odd results now causes an ERROR. Also changed behavior with respect to whitespace -- trailing whitespace is now ignored as well as leading whitespace (which has always been ignored). Documentation updated to reflect change in whitespace handling. Also some refactoring to what I believe is a more sensible order of several paragraphs.
2004-08-08Another zic cleanup .Bruce Momjian
2004-08-08Link in dirmod specially for zic so it works on Win32.Bruce Momjian
2004-08-08Remove xstrdup and friends who were only called once. Replace withBruce Momjian
#ifdef calls.
2004-08-08Add a comment about why we always replay backup blocks from WAL.Tom Lane
2004-08-08Fix Win32 pg_dumpall, with help from Claudio.Bruce Momjian
2004-08-08Improve comment.Bruce Momjian
2004-08-08Fix comment.Bruce Momjian
2004-08-08Fixups for Win32 symlinks.Bruce Momjian
2004-08-07The attached patch implements a symlink for win32 using junctions, andBruce Momjian
uses that for win32 tablespaces. Andreas Pflug
2004-08-07Remove bogus trailing dot from eventlog output, per Andreas.Tom Lane
Clean up README file a bit.
2004-08-07Don't try to rewrite NEW references in a utility statement in a rule.Tom Lane
There won't be any, and in fact there won't even be an RTE for NEW, which was leading to a core dump in CVS tip. 7.4 and earlier manage not to crash when applying ResolveNew in this scenario, but I think it was just good fortune that they didn't. Per report from Bernd Helmle.
2004-08-07Ignore trailing spaces in psql \h.Bruce Momjian
Greg Sabino Mullane
2004-08-07Vacuum delay activated by default.Jan Wieck
Jan
2004-08-07Document delay as 0, per Matthew T. O'ConnorBruce Momjian
2004-08-06Arrange for proper newline termination of syslogger's own messages,Tom Lane
per Andreas.
2004-08-06Revert badly-broken patch to dump comments on composite-type columns.Tom Lane
2004-08-06I have noticed that the latex format in psql has some bugs:Bruce Momjian
o "_" is not escaped, and causes TeX to abort, thinking it's a subscript outside of maths mode. Most of my table and field names use underscores, so this is a really nasty one. o The column count is calculated using the contents of opt_align. But opt_align has one extra element, and so it's always one too many. I changed it to count the column headings, like all the other output formats. There may be a bug in computing opt_align that this patch does not address, but I'm not yet familiar enough with the psql source to fix this as well. o The line drawing rules for each border setting (0-3) and expanded mode didn't always match the documented behaviour and what other formats (e.g. aligned) did. I made it as conformant as possible, and also tidied the alignment of the first line of the footer, which was incorrectly indented. Roger Leigh
2004-08-06Use one, not zero, as the default lower bound for arrays of AclItems.Tom Lane
This avoids changing the displayed appearance of ACL columns now that array_out decorates its output with bounds information when the lower bound isn't one. Per gripe from Gaetano Mendola. Note that I did not force initdb for this, although any database initdb'd in the last couple of days is going to have some problems.
2004-08-06Add _O_TEXT option to dup2 call on Windows, to ensure redirected postmasterTom Lane
stderr is in text mode. Per Andreas.