aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Tom Ivar Helbekkmo <tih@kpnQwest.no> says that dynamic linking worksTom Lane2001-04-02
| | | | now on VAX NetBSD. Hence, remove #ifdef'd disable tests.
* Planner wasn't correctly handling adjustment of tuple_fraction for theTom Lane2001-04-01
| | | | case of LIMIT in a sub-select.
* Patch to put rudimentary dependency support into pg_dump. This addressesPhilip Warner2001-04-01
| | | | | | | | | | | | the UDT/function order problem. - Rudimentary support for dependencies in archives. Uses dependencies to modify the OID used in sorting TOC entries. This will NOT handle multi-level dependencies, but will manage simple relationships like UDTs & their functions. - Treat OIDs with more respect (avoid using ints, use macros for conversion & comparison).
* On Cygwin, do initial connect() call in blocking mode, per report fromTom Lane2001-03-31
| | | | Jason Tishler.
* pqWait() should check for exception status as well as read or writeTom Lane2001-03-31
| | | | | | ready. It appears that most (all?) Unixen will consider a socket to be read or write ready if it has an error condition, but of course Microsoft does things differently.
* Re-allow specification of a new default value for an inherited columnTom Lane2001-03-30
| | | | | | in CREATE TABLE, but give a warning notice. Clean up inconsistent handling of defaults and NOT NULL flags from multiply-inherited columns. Per pghackers discussion 28-Mar through 30-Mar.
* Marc-Andre is changing where DateTime goes. This change allows the moduleD'Arcy J.M. Cain2001-03-30
| | | | | to work either way. Change submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
* Correct indenting in _quote() function.D'Arcy J.M. Cain2001-03-30
| | | | Fix submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
* Add appropriately ifdef'd hack to make ARM compiler allocate ItemPointerDataTom Lane2001-03-30
| | | | | | as six bytes not eight. This fixes a regression test failure but more importantly avoids wasting four bytes of pad space in every tuple header. Also add some commentary about what's going on.
* random_seed => seed ...Tom Lane2001-03-30
|
* Put proper pgaccess Chinese big5 file in place.Bruce Momjian2001-03-29
|
* Rename 'random_seed' back to 'seed'.Peter Eisentraut2001-03-29
|
* Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>Michael Meskes2001-03-29
|
* Quick hack to fix Oliver Elphick's problem with subselects in anTom Lane2001-03-27
| | | | | | | inheritance query: make duplicate copies of subplans in adjust_inherited_attrs. When we redesign querytrees we really gotta do something about this issue of whether querytrees are read-only and can share substructure or not.
* Repair pgindent damage to comments.Tom Lane2001-03-27
|
* 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 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.
* 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
|
* Re-order declarations to un-break the non-HAS_TEST_AND_SET case.Tom Lane2001-03-25
|
* 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
|
* 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.
* 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.
* 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 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).
* 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
|
* The attached patch fixes win32.mak which got broken by the Multibyte modHiroshi Inoue2001-03-21
| | | | | | :-(, and tidies it up a little as well. Regards, Dave.
* Check bufHdr->cntxDirty and call StartBufferIO in BufferSync()Vadim B. Mikheev2001-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).