Tom Lane
3f5d3ceed0
Cope with gcc that outputs a multiline version string, per Trond.
24 years ago
Tom Lane
47ccf37c62
pltcl's spi_execp didn't handle NULL arguments quite correctly.
...
It would try to call the input conversion routines for them anyway.
So, a valid input string for the datatype had to be supplied.
24 years ago
Tom Lane
db42e32a74
Fix documentation misstatement: OLD is not valid in ON SELECT.
24 years ago
Tom Lane
a45641d8a4
Fix incorrect test for whether Perl code is returning undef. This
...
allows plperl routines to return NULL as intended.
24 years ago
Tom Lane
386f1809a7
Fix logic error in insert_fsm_page_entry: because compact_fsm_page_list
...
removes any empty chunks, the chunk previously added won't be there
anymore, so it's possible there is zero free space in the rel's page list
afterwards. Must loop back and rerun the part that adds a chunk to
the list.
24 years ago
Tom Lane
cf77a2a034
Overhaul PL/Tcl documentation.
24 years ago
Bruce Momjian
35a5129a08
Add Goggle mention of previous discussion.
24 years ago
Tom Lane
ab5b063618
Remove long-obsolete version of pltcl documentation.
24 years ago
Tom Lane
830cdb5f45
Clean up Red Hat Tcl RPM brain-damage in a more reliable way: fix the
...
value of TCL_SHLIB_LD in the shell script that creates Makefile.tcldefs,
rather than trying to persude gmake to do it.
24 years ago
Bruce Momjian
8ac3b16789
Add new email;remove old entries.
24 years ago
Michael Meskes
cb8961ab47
Added patch to temporarily disable locale for descriptors too (Christof)
24 years ago
Bruce Momjian
9d25b39c80
Add:
...
> * Reorder postgresql.conf WAL items in order of importance
> * Remove wal_files postgresql.conf option because WAL files are now recycled
> * Find proper defaults for postgresql.conf WAL entries
> * Add checkpoint_min_warning postgresql.conf option to warn about checkpoints
> that are too frequent
24 years ago
Bruce Momjian
a7b7241059
Clarify URL:
...
< http://www1.distributed.net/source , in client/common/cpucheck.cpp
---
> from distributted.net, http://www1.distributed.net/source ,
> in client/common/cpucheck.cpp
24 years ago
Bruce Momjian
f898e60ec9
Document SMP detection code.
24 years ago
Bruce Momjian
e7e25b2d93
Re-group items.
24 years ago
Bruce Momjian
5b8016948e
Break PERFORMANCE up into subsections.
24 years ago
Bruce Momjian
fdf881d155
Add:
...
> * Add code to detect an SMP machine and handle spinlocks accordingly
24 years ago
Bruce Momjian
859a9eb468
Update FAQ.
24 years ago
Tom Lane
04c8d4c660
libpq++/pgconnection.h must not include postgres_fe.h, else it fails to
...
compile in client apps that use the standard installed header set.
To allow removing that include, move DLLIMPORT definitions out of c.h
and into the appropriate port-specific header files.
24 years ago
PostgreSQL Daemon
c64f083cf4
okay, sorry for delay all ... here is the tag for RC1 ...
24 years ago
Tom Lane
2f383b2de6
Suppress bogus soname switch that RedHat RPMs put into tclConfig.sh.
24 years ago
Peter Eisentraut
bf43bed848
Spell-check and markup police
24 years ago
Tom Lane
75f0ba9fe3
Mention that 'make distclean' is a good idea when changing configure
...
options. Document --with-pam and --enable-depend, do some minor
copy-editing.
24 years ago
Bruce Momjian
1a712718ca
Add IN/EXISTS file.
24 years ago
Bruce Momjian
e0764fdf28
Add
...
> * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS [exists]
24 years ago
Peter Eisentraut
0363192c69
Update from Kova'cs Zolta'n
24 years ago
Bruce Momjian
0c8429ca31
Add missing literal endtag.
24 years ago
Tom Lane
0dd19ad21d
Add info about how to enable large-file support, so that pg_dump won't
...
choke at 2Gb of output. From Andrew Sullivan.
24 years ago
Bruce Momjian
74c8c09338
Add:
...
> * Use thread-safe crypt() in libpq, if available
24 years ago
Bruce Momjian
a724463c8a
Improve non-thread-safe mention of libpq's crypt.
24 years ago
Bruce Momjian
9600ccad13
Improve description of autocommit behavior in ecpg manual pages.
24 years ago
Bruce Momjian
69f909ba10
You might want to run pg_indent on pg_backup_db.c however ...
...
tom lane
24 years ago
Dave Cramer
83b5ae65a0
Fixes to getImportedKeys/getExportedKeys from Jason Davies
...
Previous versions did not correctly identify primary/foreign keys
24 years ago
Tom Lane
bb698c25c7
Fix pg_restore to handle the 'set max oid' entry correctly in archives
...
dumped by pg_dump -o. Per bug report posted by Bruce; fix is from
Philip Warner, reviewed by Tom Lane.
24 years ago
Tom Lane
3dfe80243c
Add missing 'else', per report from sugita@sra.co.jp.
24 years ago
Michael Meskes
2ab3a88879
Accept subsequent commits. This should have been just a warning anyway. I
...
cannot see a reason why it should be an error.
24 years ago
Bruce Momjian
85bc36158d
Enable /contrib/pg_upgrade, mention little testing.
24 years ago
Tom Lane
1d174c3086
Explain privileges required for LOCK. Minor wordsmithing too.
24 years ago
Tom Lane
9ad737978d
Point out that superusers bypass privilege checking. Minor wordsmithing.
24 years ago
Tom Lane
b7bf03c9ed
Fix misstatements added by Bruce.
24 years ago
Bruce Momjian
d781138235
Add more comments to tqual.c for visibility functions.
24 years ago
Tom Lane
cf97080fa4
TOAST needs to do at least minimal time-qual checking in order not to
...
mess up after an aborted VACUUM FULL, per today's pghackers discussion.
Add a suitable HeapTupleSatisfiesToast routine. Remove useless special-
case test in HeapTupleSatisfiesVisibility macro for xmax =
BootstrapTransactionId; perhaps that was needed at one time, but it's
a waste of cycles now, not to mention actively wrong for SnapshotAny.
Along the way, add some much-needed comments to tqual.c, and simplify
toast_fetch_datum, which no longer needs to assume it may see chunks
out-of-order.
24 years ago
Tom Lane
0f2d949c1e
Fix init_irels to close the pg_internal.init file before returning.
...
This saves one open file descriptor per backend, and avoids an
annoying NOTICE on Cygwin (which has trouble deleting open files).
Bug appears to date back to original coding of init_irels, circa 1992.
24 years ago
Tom Lane
d66b10833f
If we fail to rename pg_internal.init into place, delete the useless
...
temporary file. This seems to be a known failure mode under Cygwin,
so we might as well expend the extra line of code to be tidy.
24 years ago
Tom Lane
aa00e6134e
Add more sanity-checking to PageAddItem and PageIndexTupleDelete,
...
to prevent spreading of corruption when page header pointers are bad.
Merge PageZero into PageInit, since it was never used separately, and
remove separate memset calls used at most other PageInit call points.
Remove IndexPageCleanup, which wasn't used at all.
24 years ago
Tom Lane
685a66cdfe
Fix typo that caused equalTriggerDescs() to return false in cases where
...
the two trigger sets were logically equal, but not in the same order.
Caught by Holger Krug (hkrug@rationalizer.com ).
24 years ago
Barry Lind
2843a13e51
Applied patch submitted by Ryouichi Matsuda (r-matuda@sra.co.jp) that fixed a problem with leading zeros being lost on fractional seconds when setting a timestamp value on a PreparedStatement.
24 years ago
Barry Lind
d013dbed75
Applied patch from Ryouichi Matsuda <r-matuda@sra.co.jp> where the jdbc
...
driver was not properly handling timestamptz datatype when using the
getObject() method on ResultSet. Fix adds this datatype to the object mappings.
24 years ago
Bruce Momjian
eb410b6bde
Manual page improvements.
24 years ago
Bruce Momjian
08147fa7da
More cleanups.
24 years ago