summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-08-12Code & docs review for server instrumentation patch. File timestampsTom Lane
2005-08-12Change a couple of "can't happen" error messages to be a shade moreTom Lane
2005-08-12Remove BufferBlockPointers array in favor of a base + (bufnum) * BLCKSZTom Lane
2005-08-12Add files to do read I/O on the cluster directory:Bruce Momjian
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-11Autovacuum loose end mop-up. Provide autovacuum-specific vacuum costTom Lane
2005-08-11Mention MD5 function index for indexing long values.Bruce Momjian
2005-08-10Make new hints follow style guide.Tom Lane
2005-08-10Add hints to cases where indexes fail because of values that are too long.Bruce Momjian
2005-08-09Make backends that are reading the pgstats file verify each backend PIDTom Lane
2005-08-09Update postgresql.conf to show default ordering for wal_sync_method.Bruce Momjian
2005-08-08Fix crash when reading 'timezone = unknown' from postgresql.conf duringTom Lane
2005-08-08Avoid useless loop overhead in AtEOXact routines when the backend isTom Lane
2005-08-08Modify AtEOXact_CatCache and AtEOXact_RelationCache to assume that theTom Lane
2005-08-08Cause ShutdownPostgres to do a normal transaction abort during backendTom Lane
2005-08-07Fix count_usable_fds() to stop trying to open files once it reachesTom Lane
2005-08-06COPY performance improvements. Avoid calling CopyGetData for each inputTom Lane
2005-08-04ALTER TABLE OWNER must change the ownership of the table's rowtype too.Tom Lane
2005-08-02Tweak BgBufferSync() so that a persistent write error on a dirty bufferTom Lane
2005-08-02Prevent planner from including temp tables of other backends when expandingTom Lane
2005-08-02Clean up CREATE DATABASE processing to make it more robust and get ridTom Lane
2005-08-02Code and docs review for pg_column_size() patch.Tom Lane
2005-08-02Use ReadDir() not readdir() so as to have some modicum of error checking.Tom Lane
2005-08-02Un-Windows-ify newlines.Tom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-08-01Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-30Use the standard spelling of the protocol argument to get/setsockopt.Tom Lane
2005-07-30Fix justify_days() for integer datestamp, clean up code.Bruce Momjian
2005-07-30Add GUC variables to control keep-alive times for idle, interval, andBruce Momjian
2005-07-30Fix compile for no O_SYNC, but introduced with O_DIRECT.Bruce Momjian
2005-07-30SUNOS4_CC -> SUNOS_CC.Bruce Momjian
2005-07-29Fix an oversight I introduced on 2003-12-28: find_nots/push_nots shouldTom Lane
2005-07-29Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane
2005-07-29Move dbsize functions into the backend. New functions:Bruce Momjian
2005-07-29Fix typo.Bruce Momjian
2005-07-29Update O_DIRECT comment.Bruce Momjian
2005-07-29Use O_DIRECT if available when using O_SYNC for wal_sync_method.Bruce Momjian
2005-07-29Thank you for applying patch --- regexp_replace.Bruce Momjian
2005-07-28Make use of new list primitives list_append_unique and list_concat_uniqueTom Lane
2005-07-28Fix a bunch of bad interactions between partial indexes and the newTom Lane
2005-07-28Code cleanup.Bruce Momjian
2005-07-28Mark a static array "const" to move a few bytes from the "data" segmentNeil Conway
2005-07-28Put libpgport into OBJS instead of LIBS, so that it gets includedTom Lane
2005-07-27Fix a few macro definitions to ensure that unary minus is enclosed inNeil Conway
2005-07-26Minor correction: cause ALTER ROLE role ROLE rolenames to behaveTom Lane
2005-07-26Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane
2005-07-26Add pg_has_role() family of privilege inquiry functions modeled after theTom Lane
2005-07-25Add SET ROLE. This is a partial commit of Stephen Frost's recent patch;Tom Lane
2005-07-25Awhile back we replaced all uses of strcasecmp and strncasecmp withTom Lane