Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | 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 typo | Tatsuo Ishii | 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. | ||
* | Update TODO list. | Bruce Momjian | 2001-03-25 |
| | |||
* | 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 |
| | |||
* | The regexp pattern characters ^ and $ should be explained as matching | Tom Lane | 2001-03-25 |
| | | | | | | at the beginning and end of the input string, not the beginning and end of "a line", since Postgres does not allow them to match at newline characters in the data. | ||
* | Re-order declarations to un-break the non-HAS_TEST_AND_SET case. | Tom Lane | 2001-03-25 |
| | |||
* | spell fix | Peter Eisentraut | 2001-03-25 |
| | |||
* | Allow building documentation outside source tree. | Peter Eisentraut | 2001-03-25 |
| | | | | from Ian Lance Taylor | ||
* | 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 |
| | |||
* | minor copy editing | Peter Eisentraut | 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. | ||
* | Update info about mailing lists, make a few other minor improvements. | Tom Lane | 2001-03-24 |
| | |||
* | Update to the current state of platform support. | Thomas G. Lockhart | 2001-03-24 |
| | | | | Still need some tested for the 7.1 release. | ||
* | Fix up wording slightly. No change in content. | Thomas G. Lockhart | 2001-03-24 |
| | |||
* | update the ChangeLog in preparation for release ... | Marc G. Fournier | 2001-03-24 |
| | |||
* | Miscellaneous updates and minor copy-editing. | Tom Lane | 2001-03-24 |
| | |||
* | Doc update from Roberto Mello: improved versions of instr() examples. | Tom Lane | 2001-03-23 |
| | |||
* | 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. | ||
* | Update TODO list. | Bruce Momjian | 2001-03-23 |
| | |||
* | 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 SPI example to reflect new-style calling convention for textout(). | Tom Lane | 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). | ||
* | Run pgindent on _int.c, for Tom Lane. I had skipped this file because | Bruce Momjian | 2001-03-22 |
| | | | | | of a complex macro that pgindent complained about. Hand-adjusted macro for pgindent run. | ||
* | 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 |
| | |||
* | correction | Peter Eisentraut | 2001-03-21 |
| | |||
* | 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. | ||
* | Update TODO list. | Bruce Momjian | 2001-03-21 |
| | |||
* | 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 |
| | |||
* | Add mmap info. Seems mmap may not be a good idea. | Bruce Momjian | 2001-03-21 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-03-21 |
| | |||
* | well, here goes our first Release Candidate for 7.1 *cross fingers* | Marc G. Fournier | 2001-03-20 |
| |