Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | The following patch updates the FAQ_AIX and makes C++ code work with | Bruce Momjian | 2001-03-27 |
| | | | | | | | | | | | | | | | | | | more recent versions of the IBM C++ compiler (now called VisualAge C++). The C++ part was previously broken (g++ and xlC), thus this is zero risk. Only AIX specific parts are touched (1 Makefile.shlib line (link with $(COMPILER ) instead of $(CC) and one shell script line (parameter -C to nm to not demangle C++ symbo ls for .exp file)). I thus ask you to please apply this patch before release. With or without this patch RC1 on AIX 4.3.2 RS6000 passes "gmake check" for both the native compiler vac.C 5.0.1 and gcc 2.95.2 :-) Andreas | ||
* | Add changes from Mikhail Terekhov <terekhov@emc.com>. | D'Arcy J.M. Cain | 2001-03-27 |
| | | | | | | Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it. | ||
* | Add checking for valid database encoding. | Tatsuo Ishii | 2001-03-27 |
| | |||
* | ODBC source code cleanup. Mostly alignment of #define constants. | Bruce Momjian | 2001-03-27 |
| | |||
* | Spell __volatile__ correctly. | Tom Lane | 2001-03-27 |
| | |||
* | OpenBSD resultmap change: | Bruce Momjian | 2001-03-26 |
| | | | | | | | | | I posted this to the list a few days ago, but it was not addressed. Can someone please make the changes to the src/test/regress/resultmap? Thanks. - brandon | ||
* | Add period to message. | Bruce Momjian | 2001-03-26 |
| | |||
* | Change message to _the_ administrator. There is only one administrative | Bruce Momjian | 2001-03-26 |
| | | | | | | account. This connection has been terminated by the administrator. | ||
* | Add #define HAVE_ATEXIT, per report from Magnus. | Tom Lane | 2001-03-26 |
| | |||
* | pqsignal call needs to be #ifndef WIN32, per report from Magnus. | Tom Lane | 2001-03-26 |
| | |||
* | Add multibyte support | Hiroshi Inoue | 2001-03-26 |
| | |||
* | Fix unportable assumptions about alignment of local char[n] variables. | Tom Lane | 2001-03-25 |
| | |||
* | Improve comments for xlog item size #defines. | Tom Lane | 2001-03-25 |
| | |||
* | Update the changes for version 3.2. | D'Arcy J.M. Cain | 2001-03-25 |
| | |||
* | Document the --with-python flag as a simpler way of installing the | D'Arcy J.M. Cain | 2001-03-25 |
| | | | | | | PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries. | ||
* | Pick up any extra -I options for Python build. | Peter Eisentraut | 2001-03-25 |
| | |||
* | Fix unportable assumptions about alignment of local char[n] variables. | Tom Lane | 2001-03-25 |
| | |||
* | Re-order declarations to un-break the non-HAS_TEST_AND_SET case. | Tom Lane | 2001-03-25 |
| | |||
* | Fix code that incorrectly assumed a 'char foo[N]' local variable would | Tom Lane | 2001-03-25 |
| | | | | be aligned on a word boundary. Per report from Steve Nicolai. | ||
* | Make less misleading message for failed + ignored tests. | Peter Eisentraut | 2001-03-24 |
| | |||
* | Portability fix from Steve Nicolai. | Tom Lane | 2001-03-24 |
| | |||
* | Disable pg_upgrade. | Peter Eisentraut | 2001-03-24 |
| | |||
* | Hadn't built on a PARISC 1.1 box in a long time ... but when I did, | Tom Lane | 2001-03-24 |
| | | | | | it turned out that the libpq makefile chokes on '-L /lib/pa1.1'. Need to remove the space so filter rule works. | ||
* | When using 'long long int' for int64 type, check to see if the compiler | Tom Lane | 2001-03-23 |
| | | | | | | accepts nnnLL syntax for long long constants. If so, decorate the CRC64 constants with LL to avoid warnings and/or erroneous results from certain non-standards-compliant compilers. | ||
* | Mark exception and assert global variables as DLLIMPORT, so that plpgsql | Tom Lane | 2001-03-23 |
| | | | | can be compiled with asserts enabled on Windoze. | ||
* | Add checking for strtoul. SunOS4 does not have it. | Tatsuo Ishii | 2001-03-23 |
| | |||
* | Fix comments that were mis-wrapped, for Tom Lane. | Bruce Momjian | 2001-03-23 |
| | |||
* | Fix checking of file operations in demo ('files') output format. | Philip Warner | 2001-03-23 |
| | |||
* | Fix problems with coredumps due to ^C when longjmp buffer isn't valid. | Tom Lane | 2001-03-23 |
| | | | | Now, we will only catch ^C at times when it is valid. | ||
* | Fix Joubert's complaint that int8-sized numeric literals are mishandled | Tom Lane | 2001-03-22 |
| | | | | | | | | | on Alpha (because parser mistakenly assumes that a nonoverflow result from strtol means the value will fit into int4). A scan for other uses of strtol and strtoul found a couple other places with the same mistake; fix them too. The changes are all conditional on HAVE_LONG_INT_64 to avoid complaints from compilers that think x != x is a silly test (cf. pg_atoi). | ||
* | geometry tests 'FAILED' from a precision standpoint, but differently then | Marc G. Fournier | 2001-03-22 |
| | | | | | what solaris-precision takes into account ... its possible that solaris-precision is 'stale', but created a new one "just in case" ... | ||
* | Remove dashes in comments that don't need them, rewrap with pgindent. | Bruce Momjian | 2001-03-22 |
| | |||
* | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 |
| | |||
* | The attached patch fixes win32.mak which got broken by the Multibyte mod | Hiroshi Inoue | 2001-03-21 |
| | | | | | | :-(, and tidies it up a little as well. Regards, Dave. | ||
* | Check bufHdr->cntxDirty and call StartBufferIO in BufferSync() | Vadim B. Mikheev | 2001-03-21 |
| | | | | | | | | *before* acquiring shlock on buffer context. This way we should be protected against conflicts with FlushRelationBuffers. (Seems we never do excl lock and then StartBufferIO for the same buffer, so there should be no deadlock here, - but we'd better check this very soon). | ||
* | a fix from Eiji Tokuya. | Hiroshi Inoue | 2001-03-21 |
| | |||
* | Fix 'ps' WAIT status display bug on setproctitle() platforms, cleared by | Bruce Momjian | 2001-03-20 |
| | | | | Tom Lane. | ||
* | Discuss LOCALE differences as a reason for regression test failure. | Tom Lane | 2001-03-20 |
| | |||
* | Tweak out-of-memory error messages to include the request size, so that | Tom Lane | 2001-03-19 |
| | | | | | it's easier to tell whether a bug report is talking about progressive memory exhaustion or a wacko requested chunk size. | ||
* | Make regular-expression error messages a tad less obscure, | Tom Lane | 2001-03-19 |
| | | | | per gripe from Josh Berkus. | ||
* | Update Peter Mount's email address in README. | Bruce Momjian | 2001-03-19 |
| | |||
* | - Added CVS headers to files | Philip Warner | 2001-03-19 |
| | | | | | | | - Avoid forcing table name to lower case in FixupBlobXrefs - Removed fmtId calls for all ArchiveEntry name fields. This fixes quoting problems in trigger enable/disable code for mixed case table names, and avoids commands like 'pg_restore -t '"TblA"' | ||
* | Give postmaster enough time to update the pidfile before checking to | Tom Lane | 2001-03-18 |
| | | | | | see if it's been updated. Skip the whole mess if we didn't see any old pidfile. | ||
* | Remove NEXTXID xlog record type to avoid three-way deadlock risk. | Tom Lane | 2001-03-18 |
| | | | | | NEXTXID isn't really necessary, per previous discussion in pghackers, but I mulishy insisted we should put it in anyway. Mea culpa. | ||
* | When we add 'waiting' to the ps_status display, there should be a | Tom Lane | 2001-03-18 |
| | | | | space in front of it. Improve comments a little. | ||
* | Considering the BeOS port didn't compile without IPC_STAT and shm_nattch, | Tom Lane | 2001-03-18 |
| | | | | I'm betting the QNX4 port does not either ... | ||
* | Patches from Cyril Velter to make shared-memory-conflict-detection code | Tom Lane | 2001-03-18 |
| | | | | work in BeOS port. | ||
* | Fixed but in _enableTriggersIfNecessary introduced by previous patches by me | Philip Warner | 2001-03-18 |
| | | | | which caused segfault in a data-only retore with BLOBs | ||
* | Fix coredump due to writing one more byte than we'd allocated. | Tom Lane | 2001-03-18 |
| | |||
* | Make sure ControlFile logId/logSeg don't go backwards (barely possible given a | Tom Lane | 2001-03-18 |
| | | | | slow backend, if we update unconditionally as the code did before). |