- Nov 11, 2007
-
-
Bruce Momjian authored
-
Bruce Momjian authored
or will never be converted.
-
- Nov 10, 2007
-
-
Joe Conway authored
per suggestion from Tom Lane. This fixes crash-bug reported by Stefan Schwarzer.
-
- Nov 07, 2007
-
-
Peter Eisentraut authored
-
- Oct 23, 2007
-
-
Tom Lane authored
Needed to accommodate different layout on some platforms (Debian for one). Heikki Linnakangas
-
- Oct 22, 2007
-
-
Tom Lane authored
ITAGAKI Takahiro
-
Magnus Hagander authored
Per Greg Stark & Dave Page
-
- Oct 16, 2007
-
-
Tom Lane authored
into SHAREDIR/tsearch_data. Use this instead of ad-hoc coding in dict_xsyn/Makefile. Should fix current ContribCheck failures on MSVC.
-
- Oct 15, 2007
-
-
Tom Lane authored
hard-to-maintain textual examples currently in the SGML docs. From Sergey Karpov.
-
- Oct 14, 2007
-
-
Tom Lane authored
-
- Oct 11, 2007
-
-
Tom Lane authored
on SerializableSnapshot, minor other cleanup. Marko Kreen, some further editorialization by me.
-
- Oct 09, 2007
-
-
Tom Lane authored
-
- Oct 08, 2007
-
-
Tom Lane authored
Some additional minor editorializing by Tom.
-
Jan Wieck authored
on CORE previously. This module offers transaction ID's containing the original XID and the transaction epoch as a bigint value to the user level. It also provides a special txid_snapshot data type that contains an entire transactions visibility snapshot information, which is useful to determine if a particular txid was visible to a transaction or not. The module has been tested by porting Slony-I from using its original xxid data type. Jan
-
- Oct 01, 2007
-
-
D'Arcy J.M. Cain authored
-
D'Arcy J.M. Cain authored
-
- Sep 30, 2007
-
-
Tom Lane authored
testing). Combine the formerly independent opclasses for the various ISN types into opfamilies. The latter causes some extra bleating from opr_sanity, since the module doesn't provide complete sets of cross-type operators, but it's still a good idea because it will give the planner more information to work with. The missing cross-type operators no longer pose a risk of unexpected planner errors in 8.3, so there's no need to insist on filling them in (and I gather it wouldn't be very sound semantically to add them all).
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
Tom Lane authored
any commutator operator for =(chkpass,text), so this was creating a shell operator that would fail on use. Found by opr_sanity testing.
-
Tom Lane authored
Found by running opr_sanity on contrib modules.
-
- Sep 29, 2007
-
-
Tom Lane authored
which is the case at least on some Solaris versions. Marko Kreen
-
- Sep 27, 2007
-
-
Tom Lane authored
couldn't possibly HAVE_GETOPT. I believe this is the most appropriate form of the patch submitted 2007-08-07 by Hiroshi Saito, though not having a Windows build environment I won't know for sure till I see the buildfarm results.
-
Tom Lane authored
- create a separate archive_mode GUC, on which archive_command is dependent - %r option in recovery.conf sends last restartpoint to recovery command - %r used in pg_standby, updated README - minor other code cleanup in pg_standby - doc on Warm Standby now mentions pg_standby and %r - log_restartpoints recovery option emits LOG message at each restartpoint - end of recovery now displays last transaction end time, as requested by Warren Little; also shown at each restartpoint - restart archiver if needed to carry away WAL files at shutdown Simon Riggs
-
- Sep 21, 2007
-
-
Tom Lane authored
unpruned XMAX in its header. At the cost of 4 bytes per page, this keeps us from performing heap_page_prune when there's no chance of pruning anything. Seems to be necessary per Heikki's preliminary performance testing.
-
- Sep 20, 2007
-
-
Tom Lane authored
columns, and the new version can be stored on the same heap page, we no longer generate extra index entries for the new version. Instead, index searches follow the HOT-chain links to ensure they find the correct tuple version. In addition, this patch introduces the ability to "prune" dead tuples on a per-page basis, without having to do a complete VACUUM pass to recover space. VACUUM is still needed to clean up dead index entries, however. Pavan Deolasee, with help from a bunch of other people.
-
- Sep 14, 2007
-
-
Tom Lane authored
contrib/intarray's GIN opclass override the built-in default. Per bug #3048 and other complaints.
-
- Sep 13, 2007
-
-
Tom Lane authored
than two independent bits (one of which was never used in heap pages anyway, or at least hadn't been in a very long time). This gives us flexibility to add the HOT notions of redirected and dead item pointers without requiring anything so klugy as magic values of lp_off and lp_len. The state values are chosen so that for the states currently in use (pre-HOT) there is no change in the physical representation.
-
- Aug 29, 2007
-
-
Tom Lane authored
SELECT on the target table. Per discussion.
-
- Aug 27, 2007
-
-
Tom Lane authored
not all that exciting when the system catalogs are readable by all, but some people try to lock them down, and would not like this sort of end run ...
-
Tom Lane authored
but no permissions check at all is certainly no good.) Clean up usage of some deprecated APIs.
-
Tom Lane authored
but no permissions check at all is certainly no good.) Clean up usage of some deprecated APIs.
-
Tom Lane authored
usage of RelationNameGetTupleDesc().
-
Tom Lane authored
exposing user data to others, and clean up usage of deprecated APIs.
-
- Aug 25, 2007
-
-
Tatsuo Ishii authored
(FD_SETSIZE - 10) rather than a hardwired number.
-
- Aug 23, 2007
-
-
Tom Lane authored
padded encryption scheme. Formerly it would try to access res[(unsigned) -1], which resulted in core dumps on 64-bit machines, and was certainly trouble waiting to happen on 32-bit machines (though in at least the known case it was harmless because that byte would be overwritten after return). Per report from Ken Colson; fix by Marko Kreen.
-
Tom Lane authored
-