aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* > Kinda looks like Ian broke the compile-in-source-dir case whileBruce Momjian2001-03-27
| | | | | | | | > making the compile-in-separate-dir case work. Tut tut. Yes. My apologies. This patch is one way to fix things. Ian
* The following patch updates the FAQ_AIX and makes C++ code work withBruce Momjian2001-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. Cain2001-03-27
| | | | | | Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it.
* Add checking for valid database encoding.Tatsuo Ishii2001-03-27
|
* ODBC source code cleanup. Mostly alignment of #define constants.Bruce Momjian2001-03-27
|
* Spell __volatile__ correctly.Tom Lane2001-03-27
|
* OpenBSD resultmap change:Bruce Momjian2001-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 Momjian2001-03-26
|
* Change message to _the_ administrator. There is only one administrativeBruce Momjian2001-03-26
| | | | | | account. This connection has been terminated by the administrator.
* Add #define HAVE_ATEXIT, per report from Magnus.Tom Lane2001-03-26
|
* pqsignal call needs to be #ifndef WIN32, per report from Magnus.Tom Lane2001-03-26
|
* Add multibyte supportHiroshi Inoue2001-03-26
|
* Fix typoTatsuo Ishii2001-03-26
|
* Fix unportable assumptions about alignment of local char[n] variables.Tom Lane2001-03-25
|
* Improve comments for xlog item size #defines.Tom Lane2001-03-25
|
* Update the changes for version 3.2.D'Arcy J.M. Cain2001-03-25
|
* Document the --with-python flag as a simpler way of installing theD'Arcy J.M. Cain2001-03-25
| | | | | | PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries.
* Update TODO list.Bruce Momjian2001-03-25
|
* Pick up any extra -I options for Python build.Peter Eisentraut2001-03-25
|
* Fix unportable assumptions about alignment of local char[n] variables.Tom Lane2001-03-25
|
* The regexp pattern characters ^ and $ should be explained as matchingTom Lane2001-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 Lane2001-03-25
|
* spell fixPeter Eisentraut2001-03-25
|
* Allow building documentation outside source tree.Peter Eisentraut2001-03-25
| | | | from Ian Lance Taylor
* Fix code that incorrectly assumed a 'char foo[N]' local variable wouldTom Lane2001-03-25
| | | | be aligned on a word boundary. Per report from Steve Nicolai.
* Make less misleading message for failed + ignored tests.Peter Eisentraut2001-03-24
|
* Portability fix from Steve Nicolai.Tom Lane2001-03-24
|
* minor copy editingPeter Eisentraut2001-03-24
|
* Disable pg_upgrade.Peter Eisentraut2001-03-24
|
* Hadn't built on a PARISC 1.1 box in a long time ... but when I did,Tom Lane2001-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 Lane2001-03-24
|
* Update to the current state of platform support.Thomas G. Lockhart2001-03-24
| | | | Still need some tested for the 7.1 release.
* Fix up wording slightly. No change in content.Thomas G. Lockhart2001-03-24
|
* update the ChangeLog in preparation for release ...Marc G. Fournier2001-03-24
|
* Miscellaneous updates and minor copy-editing.Tom Lane2001-03-24
|
* Doc update from Roberto Mello: improved versions of instr() examples.Tom Lane2001-03-23
|
* When using 'long long int' for int64 type, check to see if the compilerTom Lane2001-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 plpgsqlTom Lane2001-03-23
| | | | can be compiled with asserts enabled on Windoze.
* Update TODO list.Bruce Momjian2001-03-23
|
* Add checking for strtoul. SunOS4 does not have it.Tatsuo Ishii2001-03-23
|
* Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian2001-03-23
|
* Fix SPI example to reflect new-style calling convention for textout().Tom Lane2001-03-23
|
* Fix checking of file operations in demo ('files') output format.Philip Warner2001-03-23
|
* Fix problems with coredumps due to ^C when longjmp buffer isn't valid.Tom Lane2001-03-23
| | | | Now, we will only catch ^C at times when it is valid.
* Fix Joubert's complaint that int8-sized numeric literals are mishandledTom Lane2001-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 becauseBruce Momjian2001-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 thenMarc G. Fournier2001-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 Momjian2001-03-22
|
* pgindent run. Make it all clean.Bruce Momjian2001-03-22
|
* correctionPeter Eisentraut2001-03-21
|