summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Improve comments for xlog item size #defines.Tom Lane
2001-03-25Update the changes for version 3.2.D'Arcy J.M. Cain
2001-03-25Document the --with-python flag as a simpler way of installing theD'Arcy J.M. Cain
PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries.
2001-03-25Pick up any extra -I options for Python build.Peter Eisentraut
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Re-order declarations to un-break the non-HAS_TEST_AND_SET case.Tom Lane
2001-03-25Fix code that incorrectly assumed a 'char foo[N]' local variable wouldTom Lane
be aligned on a word boundary. Per report from Steve Nicolai.
2001-03-24Make less misleading message for failed + ignored tests.Peter Eisentraut
2001-03-24Portability fix from Steve Nicolai.Tom Lane
2001-03-24Disable pg_upgrade.Peter Eisentraut
2001-03-24Hadn't built on a PARISC 1.1 box in a long time ... but when I did,Tom Lane
it turned out that the libpq makefile chokes on '-L /lib/pa1.1'. Need to remove the space so filter rule works.
2001-03-23When using 'long long int' for int64 type, check to see if the compilerTom Lane
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.
2001-03-23Mark exception and assert global variables as DLLIMPORT, so that plpgsqlTom Lane
can be compiled with asserts enabled on Windoze.
2001-03-23Add checking for strtoul. SunOS4 does not have it.Tatsuo Ishii
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-23Fix checking of file operations in demo ('files') output format.Philip Warner
2001-03-23Fix problems with coredumps due to ^C when longjmp buffer isn't valid.Tom Lane
Now, we will only catch ^C at times when it is valid.
2001-03-22Fix Joubert's complaint that int8-sized numeric literals are mishandledTom Lane
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).
2001-03-22geometry tests 'FAILED' from a precision standpoint, but differently thenMarc G. Fournier
what solaris-precision takes into account ... its possible that solaris-precision is 'stale', but created a new one "just in case" ...
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-03-21The attached patch fixes win32.mak which got broken by the Multibyte modHiroshi Inoue
:-(, and tidies it up a little as well. Regards, Dave.
2001-03-21Check bufHdr->cntxDirty and call StartBufferIO in BufferSync()Vadim B. Mikheev
*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).
2001-03-21a fix from Eiji Tokuya.Hiroshi Inoue
2001-03-20Fix 'ps' WAIT status display bug on setproctitle() platforms, cleared byBruce Momjian
Tom Lane.
2001-03-20Discuss LOCALE differences as a reason for regression test failure.Tom Lane
2001-03-19Tweak out-of-memory error messages to include the request size, so thatTom Lane
it's easier to tell whether a bug report is talking about progressive memory exhaustion or a wacko requested chunk size.
2001-03-19Make regular-expression error messages a tad less obscure,Tom Lane
per gripe from Josh Berkus.
2001-03-19Update Peter Mount's email address in README.Bruce Momjian
2001-03-19 - Added CVS headers to filesPhilip Warner
- 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"'
2001-03-18Give postmaster enough time to update the pidfile before checking toTom Lane
see if it's been updated. Skip the whole mess if we didn't see any old pidfile.
2001-03-18Remove NEXTXID xlog record type to avoid three-way deadlock risk.Tom Lane
NEXTXID isn't really necessary, per previous discussion in pghackers, but I mulishy insisted we should put it in anyway. Mea culpa.
2001-03-18When we add 'waiting' to the ps_status display, there should be aTom Lane
space in front of it. Improve comments a little.
2001-03-18Considering the BeOS port didn't compile without IPC_STAT and shm_nattch,Tom Lane
I'm betting the QNX4 port does not either ...
2001-03-18Patches from Cyril Velter to make shared-memory-conflict-detection codeTom Lane
work in BeOS port.
2001-03-18Fixed but in _enableTriggersIfNecessary introduced by previous patches by mePhilip Warner
which caused segfault in a data-only retore with BLOBs
2001-03-18Fix coredump due to writing one more byte than we'd allocated.Tom Lane
2001-03-18Make sure ControlFile logId/logSeg don't go backwards (barely possible given aTom Lane
slow backend, if we update unconditionally as the code did before).
2001-03-17Rearrange XLogFileInit so that control-file spinlock is not held while fillingTom Lane
the new log file with zeroes, only while renaming it into place. This should prevent problems with 'stuck spinlock' errors under heavy load.
2001-03-16Fixed bug in handling of pointers to structs.Michael Meskes
2001-03-16Oops I forgot to add new files for multibyte support.Hiroshi Inoue
Sorry Eiji.
2001-03-16Support syncing WAL log to disk using either fsync(), fdatasync(),Tom Lane
O_SYNC, or O_DSYNC (as available on a given platform). Add GUC parameter to control sync method. Also, add defense to XLogWrite to prevent it from going nuts if passed a target write position that's past the end of the buffers so far filled by XLogInsert.
2001-03-16Add multibyte support.Hiroshi Inoue
Provide an extenisible scheme of encoding conversion. As the first step, SJIS and BIG5 are supported. From now on multibyte people would be happy to use this psqlodbc driver. Eiji Tokuya e-tokuya@mail.sankyo-unyu.co.jp
2001-03-15Fix parameter handling.D'Arcy J.M. Cain
Fix a bug where cs.execute('select %d + %d', (1, 2)) would get interpreted as cs.executemany('select %d + %d', (1, 2))
2001-03-15Add WIN32 support.D'Arcy J.M. Cain
2001-03-14Give a more reasonable error message for a bad attribute name appliedTom Lane
to a join or subselect alias ... cf. Oliver Elphick's complaint 13-Mar.
2001-03-14Reduce amount of memory used per tuple for after-event triggers. ThisTom Lane
is still a memory leak, but a little less bad than it was.
2001-03-14COPY should handle after-insert triggers the same as execMain.c does.Tom Lane
I'm not sure that it's really necessary to save insert events when there are only after update or delete triggers, but certainly it's wrong for COPY to behave differently from an INSERT query.
2001-03-14A much better version of this is now in backend/port/aix.Peter Eisentraut