Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Allow commas in BEGIN, START TRANSACTION, and SET TRANSACTION, as required | Tom Lane | 2004-08-12 | |
| | | | | | | by the SQL standard. For backwards compatibility, however, continue to accept the syntax without. Minor editorialization in the reference pages for these commands, too. | |||
* | Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK TO, for greater | Tom Lane | 2004-08-12 | |
| | | | | | | compliance with SQL2003 spec syntax. Oliver Jowett | |||
* | Cleanup Win32 COPY handling, and move archive examples to SGML. | Bruce Momjian | 2004-08-12 | |
| | ||||
* | Add mention of "WIN32" COPY. | Bruce Momjian | 2004-08-12 | |
| | ||||
* | Add make_native_path() because Win32 COPY is an internal CMD.EXE command | Bruce Momjian | 2004-08-12 | |
| | | | | | | | | | | and doesn't process forward slashes in the same way as external commands. Quoting the first argument to COPY does not convert forward to backward slashes, but COPY does properly process quoted forward slashes in the second argument. Win32 COPY works with quoted forward slashes in the first argument only if the current directory is the same as the directory of the first argument. | |||
* | Cause initdb to actually accept -s as intended, and fix some typos in | Tom Lane | 2004-08-11 | |
| | | | | | | a comment. Jon Jensen | |||
* | Fix broken parsing of CREATE TABLE AS (looks like a mis-sync with main | Tom Lane | 2004-08-11 | |
| | | | | parser). | |||
* | Avoid crashing when restoring a saved GUC session_authorization value | Tom Lane | 2004-08-11 | |
| | | | | that refers to a now-deleted userid. Per gripe from Chris Ochs. | |||
* | Add PQserverVersion() to libpq to provide more-convenient access to | Tom Lane | 2004-08-11 | |
| | | | | | | | the server version number. This commit also removes bogus DOS line endings from libpqddll.def. Greg Sabino Mullane | |||
* | Work around broken strtod() that's present in many Solaris releases. | Tom Lane | 2004-08-11 | |
| | | | | Thanks to Michael Fuhr for identifying the problem. | |||
* | Fix function definition that somehow missed being ANSI-fied, and align | Tom Lane | 2004-08-11 | |
| | | | | | | 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. | |||
* | Allow compilation when CODESET is not defined (OpenBSD). | Peter Eisentraut | 2004-08-11 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-08-11 | |
| | ||||
* | Add translation from 7.4 branch to head. | Peter Eisentraut | 2004-08-11 | |
| | ||||
* | Fix failure to guarantee that a checkpoint will write out pg_clog updates | Tom Lane | 2004-08-11 | |
| | | | | | | 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. | |||
* | Set DYLD_LIBRARY_PATH so that 'make check' works without prior | Tom Lane | 2004-08-10 | |
| | | | | 'make install' on OS X. Per suggestion from Adam Witney. | |||
* | New translation | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | Translation updates | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | Translation updates | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | syslogger.c needs <sys/time.h> on some platforms, per Greg Mullane. | Tom Lane | 2004-08-09 | |
| | ||||
* | Path-mangling logic was failing to account for paths containing mentions | Tom Lane | 2004-08-09 | |
| | | | | | | | | 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. | |||
* | When expanding %p in archive_command or restore_command, translate | Tom Lane | 2004-08-09 | |
| | | | | | | 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. | |||
* | Fix Win32 pg_dumpall check.REL8_0_0BETA1 | Bruce Momjian | 2004-08-09 | |
| | ||||
* | Improve comment. | Bruce Momjian | 2004-08-09 | |
| | ||||
* | Stamp libpq.rc with 8.0 version. | Bruce Momjian | 2004-08-09 | |
| | ||||
* | Make listen_addresses be a comma-separated list instead of a space-separated | Tom Lane | 2004-08-08 | |
| | | | | list. More consistent with our other list-containing GUC variables. | |||
* | Document background writer control parameters, do some editorial work | Tom Lane | 2004-08-08 | |
| | | | | on other recent changes in runtime parameter list. | |||
* | If these are ifdef WIN32 in the .c file, should be so in .h as well. | Tom Lane | 2004-08-08 | |
| | ||||
* | Disable vacuum delay, as discussed on hackers. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Fix compiler warning in the proper way. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Supress warning about zero-length format string. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Allow libpgport to call memory allocation routines even though | Bruce Momjian | 2004-08-08 | |
| | | | | | | | 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. | |||
* | More Win32 zic build cleanups now that we have symlinks, it needs help. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Adjust defines to be consistent. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Tighened up syntax checking of array input processing considerably. Junk that | Joe Conway | 2004-08-08 | |
| | | | | | | | | | 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. | |||
* | Another zic cleanup . | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Link in dirmod specially for zic so it works on Win32. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Remove xstrdup and friends who were only called once. Replace with | Bruce Momjian | 2004-08-08 | |
| | | | | #ifdef calls. | |||
* | Add a comment about why we always replay backup blocks from WAL. | Tom Lane | 2004-08-08 | |
| | ||||
* | Fix Win32 pg_dumpall, with help from Claudio. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Improve comment. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Fix comment. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | Fixups for Win32 symlinks. | Bruce Momjian | 2004-08-08 | |
| | ||||
* | The attached patch implements a symlink for win32 using junctions, and | Bruce Momjian | 2004-08-07 | |
| | | | | | | uses that for win32 tablespaces. Andreas Pflug | |||
* | Remove bogus trailing dot from eventlog output, per Andreas. | Tom Lane | 2004-08-07 | |
| | | | | Clean up README file a bit. | |||
* | Don't try to rewrite NEW references in a utility statement in a rule. | Tom Lane | 2004-08-07 | |
| | | | | | | | | 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. | |||
* | Ignore trailing spaces in psql \h. | Bruce Momjian | 2004-08-07 | |
| | | | | Greg Sabino Mullane | |||
* | Vacuum delay activated by default. | Jan Wieck | 2004-08-07 | |
| | | | | Jan |