- 12 Aug, 2005 10 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
an error instead.
-
Tom Lane authored
should surely be timestamptz not timestamp; fix some but not all of the holes in check_and_make_absolute(); other minor cleanup. Also put in the missed catversion bump.
-
Bruce Momjian authored
-
Tom Lane authored
verbose when they do happen. The "left link changed unexpectedly" one in particular has been seen more than once in the field.
-
Tom Lane authored
computation. On modern machines this is as fast if not faster, and we don't have to clog the CPU's L2 cache with a tens-of-KB pointer array. If we ever decide to adopt a more dynamic allocation method for shared buffers, we'll probably have to revert this patch, but in the meantime we might as well save a few bytes and nanoseconds. Per Qingqing Zhou.
-
Bruce Momjian authored
pg_stat_file() pg_read_file() pg_ls_dir() pg_reload_conf() pg_rotate_logfile() Dave Page Andreas Pflug
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
whenever we generate a new OID. This prevents occasional duplicate-OID errors that can otherwise occur once the OID counter has wrapped around. Duplicate relfilenode values are also checked for when creating new physical files. Per my recent proposal.
-
- 11 Aug, 2005 7 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
EINPROGRESS, according to Florian Hars. I'm not completely convinced but the spec does seem to read that way.
-
Tom Lane authored
delay and limit, both as global GUCs and as table-specific entries in pg_autovacuum. stats_reset_on_server_start is now OFF by default, but a reset is forced if we did WAL replay. XID-wrap vacuums do not ANALYZE, but do FREEZE if it's a template database. Alvaro Herrera
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 10 Aug, 2005 4 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Martijn van Oosterhout
-
- 09 Aug, 2005 10 commits
-
-
Tom Lane authored
CPPFLAGS, CFLAGS, CFLAGS_SL, LDFLAGS, LDFLAGS_SL, and LIBS. Change it so that invoking pg_config with no arguments reports all available information, rather than just giving an error message. Per discussion.
-
Tom Lane authored
against the PGPROC array. Anything in the file that isn't in PGPROC gets rejected as being a stale entry. This should solve complaints about stale entries in pg_stat_activity after a BETERM message has been dropped due to overload.
-
Bruce Momjian authored
< inheritance < * Allow enable_constraint_exclusion to work for UPDATE and DELETE queries > inheritance, and allow it to work for UPDATE and DELETE queries
-
Bruce Momjian authored
> * -Add C code on Unix to copy directories for use in creating new databases
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Allow multiple blocks to be written to WAL with one write()
-
Bruce Momjian authored
-
- 08 Aug, 2005 6 commits
-
-
Tom Lane authored
SIGHUP; it's not OK for an assign_hook to return a non-malloc'd string. Problem was introduced during timezone library rewrite.
-
Bruce Momjian authored
> o -Allow FOR UPDATE queries to do NOWAIT locks
-
Tom Lane authored
compiled with USE_ASSERT_CHECKING but is running with assert_enabled false.
-
Tom Lane authored
ResourceOwner mechanism already released all reference counts for the cache entries; therefore, we do not need to scan the catcache or relcache at transaction end, unless we want to do it as a debugging crosscheck. Do the crosscheck only in Assert mode. This is the same logic we had previously installed in AtEOXact_Buffers to avoid overhead with large numbers of shared buffers. I thought it'd be a good idea to do it here too, in view of Kari Lavikka's recent report showing a real-world case where AtEOXact_CatCache is taking a significant fraction of runtime.
-
Tom Lane authored
fixed the contrib library inclusions properly.
-
Tom Lane authored
exit, instead of trying to take shortcuts. Introduce some additional shutdown callback routines to eliminate kluges like having ProcKill be responsible for shutting down the buffer manager. Ensure that the order of operations during shutdown is predictable and what you would expect given the module layering.
-
- 07 Aug, 2005 2 commits
-
-
Tom Lane authored
to be the platform standard. This should fix recursive-rule breakage due to recent Makefile changes. Per discussion.
-
Tom Lane authored
max_files_per_process. Going further than that is just a waste of cycles, and it seems that current Cygwin does not cope gracefully with deliberately running the system out of FDs. Per Andrew Dunstan.
-
- 06 Aug, 2005 1 commit
-
-
Tom Lane authored
character, tighten the inner loops of CopyReadLine and CopyReadAttribute, arrange to parse out all the attributes of a line in just one call instead of one CopyReadAttribute call per attribute, be smarter about which client encodings require slow pg_encoding_mblen() loops. Also, clean up the mishmash of static variables and overly-long parameter lists in favor of passing around a single CopyState struct containing all the state data. Original patch by Alon Goldshuv, reworked by Tom Lane.
-