Peter Eisentraut
6cf8707b82
correction
25 years ago
Hiroshi Inoue
ff3c4896a9
The attached patch fixes win32.mak which got broken by the Multibyte mod
...
:-(, and tidies it up a little as well.
Regards, Dave.
25 years ago
Bruce Momjian
34dba9c9c4
Update TODO list.
25 years ago
Vadim B. Mikheev
ab36582a19
Check bufHdr->cntxDirty and call StartBufferIO in BufferSync()
...
*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).
25 years ago
Hiroshi Inoue
736c4655c3
a fix from Eiji Tokuya.
25 years ago
Bruce Momjian
cfbd8a781b
Add mmap info. Seems mmap may not be a good idea.
25 years ago
Bruce Momjian
698a0b87c9
Update TODO list.
25 years ago
Marc G. Fournier
59ab6a49ab
well, here goes our first Release Candidate for 7.1 *cross fingers*
25 years ago
Bruce Momjian
85c0c73267
Fix 'ps' WAIT status display bug on setproctitle() platforms, cleared by
...
Tom Lane.
25 years ago
Bruce Momjian
2bea1e0aec
Update Japanese FAQ.
25 years ago
Bruce Momjian
3938b80637
Update TODO list.
25 years ago
Tom Lane
40dc76e315
Recommend CREATE TABLE AS in preference to SELECT INTO. Remove the
...
(inadequate anyway) mention of SELECT INTO from the main SELECT ref page.
Point out that SELECT INTO means something else in plpgsql and ecpg.
25 years ago
Bruce Momjian
192d7245b5
Update TODO list.
25 years ago
Bruce Momjian
7433081a6f
Update TODO list.
25 years ago
Bruce Momjian
f4cb2be88e
Update TODO list.
25 years ago
Bruce Momjian
86f8949271
Update TODO list.
25 years ago
Tom Lane
2ef6e7ee18
Repair intarray's problems with TOASTed input, avoid scribbling on
...
source data, improve split algorithm for intbig_ops. Oleg Bartunov
with some kibitzing from Tom Lane.
25 years ago
Tom Lane
9e07c9a39c
Mention that parallel regress script needs to be run under ksh not sh
...
on HPUX.
25 years ago
Tom Lane
ca03b551fc
Discuss LOCALE differences as a reason for regression test failure.
25 years ago
Tom Lane
68bc848766
Tweak out-of-memory error messages to include the request size, so that
...
it's easier to tell whether a bug report is talking about progressive
memory exhaustion or a wacko requested chunk size.
25 years ago
Tom Lane
184fb14b90
Make regular-expression error messages a tad less obscure,
...
per gripe from Josh Berkus.
25 years ago
Bruce Momjian
c41536ea56
Update Peter Mount's email address in README.
25 years ago
Peter Eisentraut
6ea087b243
Add missing TO.
25 years ago
Peter Eisentraut
1088e72054
Add note about saving large objects during upgrade.
25 years ago
Philip Warner
cfeccdf80a
- Added CVS headers to files
...
- 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"'
25 years ago
Tom Lane
31b5c05819
Restore include-file updates, and fix some of the more glaring macro
...
sloppiness (insufficient parenthesization, etc).
It still fails regress test for me, however.
25 years ago
Tom Lane
8f82141b54
Restore Peter's makefile fixes.
25 years ago
Tom Lane
7c9f29546c
Give postmaster enough time to update the pidfile before checking to
...
see if it's been updated. Skip the whole mess if we didn't see any
old pidfile.
25 years ago
Tom Lane
af6e88a9cf
Remove NEXTXID xlog record type to avoid three-way deadlock risk.
...
NEXTXID isn't really necessary, per previous discussion in pghackers,
but I mulishy insisted we should put it in anyway. Mea culpa.
25 years ago
Tom Lane
ddc5bc958a
When we add 'waiting' to the ps_status display, there should be a
...
space in front of it. Improve comments a little.
25 years ago
Tom Lane
934126b518
Considering the BeOS port didn't compile without IPC_STAT and shm_nattch,
...
I'm betting the QNX4 port does not either ...
25 years ago
Tom Lane
4bd983bf34
Patches from Cyril Velter to make shared-memory-conflict-detection code
...
work in BeOS port.
25 years ago
Philip Warner
5c1b00450c
Fixed but in _enableTriggersIfNecessary introduced by previous patches by me
...
which caused segfault in a data-only retore with BLOBs
25 years ago
Tom Lane
fd5bac6d27
Fix coredump due to writing one more byte than we'd allocated.
25 years ago
Tom Lane
ae293d33cf
Make sure ControlFile logId/logSeg don't go backwards (barely possible given a
...
slow backend, if we update unconditionally as the code did before).
25 years ago
Bruce Momjian
4bcb80a3e3
Update contrib intarray to Jan 25 version.
25 years ago
Tom Lane
5a38af7fd8
Rearrange XLogFileInit so that control-file spinlock is not held while filling
...
the new log file with zeroes, only while renaming it into place. This should
prevent problems with 'stuck spinlock' errors under heavy load.
25 years ago
Peter Eisentraut
5dc0e67bd5
Reformat the "major changes" to 72 or so columns.
25 years ago
Peter Eisentraut
11fd91579a
Repair.
25 years ago
Peter Eisentraut
406183fbed
Tuning for docbook2man.
25 years ago
Thomas G. Lockhart
3d4fda8d19
New updates from Roberto Mello sent privately today due to email troubles.
25 years ago
Peter Eisentraut
937ec0064f
Make note that version 1.1.8 doesn't work.
25 years ago
Marc G. Fournier
dd612b4235
Generated Changelog since last Beta ...
25 years ago
Marc G. Fournier
afa7b190d2
upgrade version to beta6
25 years ago
Tom Lane
10a4e0c2eb
Documentation update from Marko Kreen.
25 years ago
Michael Meskes
90c1e2cc43
Fixed bug in handling of pointers to structs.
25 years ago
Hiroshi Inoue
935017457b
Oops I forgot to add new files for multibyte support.
...
Sorry Eiji.
25 years ago
Tom Lane
9d645fd84c
Support syncing WAL log to disk using either fsync(), fdatasync(),
...
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.
25 years ago
Tom Lane
4eb5e27a28
Resetting the XLOG can't include rewinding it to logical position zero,
...
because we need page LSNs stored in the main database to be less than
the current XLOG position. Hence, generate the new XLOG segment at last
old segment number plus one.
25 years ago
Hiroshi Inoue
9242e6c038
Add multibyte support.
...
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
25 years ago