summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2010-01-20Add missing "!= NULL", for the sake of consistency.Heikki Linnakangas
2010-01-20Rethink the way walreceiver is linked into the backend. Instead than shovingHeikki Linnakangas
2010-01-20Before attempting to create a composite type, check whether a type of thatPeter Eisentraut
2010-01-19Fix thinko in my recent change to put an explicit argisrow field in NullTest:Tom Lane
2010-01-19Add pg_stat_reset_shared('bgwriter') to reset the cluster-wide sharedMagnus Hagander
2010-01-19Add pg_table_size() and pg_indexes_size() to provide more user-friendlyTom Lane
2010-01-18Cast slightly abused enum to int, so that GCC 4.5 won't warn about switchPeter Eisentraut
2010-01-18Fix an oversight in convert_EXISTS_sublink_to_join: we can't convert anTom Lane
2010-01-18Fix incorrect comparison of scan key in GIN. Per report fromTeodor Sigaev
2010-01-18Fix portalmem.c to avoid keeping a dangling pointer to a cached plan listTom Lane
2010-01-17Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane
2010-01-17Remove unnecessary, inconsistent flag resets in ProcessInterrupts.Tom Lane
2010-01-16Fix unportable use of isxdigit() with char (rather than unsigned char)Tom Lane
2010-01-16Fix bogus initialization of KnownAssignedXids shared memory state ---Tom Lane
2010-01-16Lock database while running drop database in Hot Standby to protectSimon Riggs
2010-01-16Message mentions msec when it should be seconds, so use s instead of ms.Simon Riggs
2010-01-16Teach standby conflict resolution to use SIGUSR1Simon Riggs
2010-01-16Add #include <sys/time.h> for struct timeval definition on BSD/OS.Bruce Momjian
2010-01-15Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane
2010-01-15No, scratch that, it was getting added twice.Tom Lane
2010-01-15Actually, I'll bet the mingw problem is lack of $(BE_DLLLIBS) ...Tom Lane
2010-01-15Fix bogus subdir setting ... wonder just what that affects ...Tom Lane
2010-01-15Remove unused (in non-assertion-enabled build) variable.Heikki Linnakangas
2010-01-15Introduce Streaming Replication.Heikki Linnakangas
2010-01-14Add point_ops opclass for GiST.Teodor Sigaev
2010-01-14First part of refactoring of code for ResolveRecoveryConflict. PurposesSimon Riggs
2010-01-13When loading critical system indexes into the relcache, ensure we lock theTom Lane
2010-01-13Fix bug #5269: ResetPlanCache mustn't invalidate cached utility statements,Tom Lane
2010-01-13Make fixed_paramref_hook behave properly when there are 'unused' slotsTom Lane
2010-01-12Fix relcache reload mechanism to be more robust in the face of errorsTom Lane
2010-01-12Please tablespace directories in their own subdirectory so pg_migratorBruce Momjian
2010-01-12Fix aclexplode to not explode on a zero-entry ACL array.Tom Lane
2010-01-11Add some simple support and documentation for using process-specific oom_adjTom Lane
2010-01-11Improve ExecEvalVar's handling of whole-row variables in cases where theTom Lane
2010-01-10During Hot Standby, fix drop database when sessions idle.Simon Riggs
2010-01-10Create typedef pgsocket for storing socket descriptors.Magnus Hagander
2010-01-10Remove partial, broken support for NULL pointers when fetching attributes.Robert Haas
2010-01-09Make ExecEvalFieldSelect throw a more intelligible error if it's asked toTom Lane
2010-01-09During Hot Standby, set DatabasePath correctly during relcache init fileSimon Riggs
2010-01-08Fix oversight in EvalPlanQualFetch: after failing to lock a tuple becauseTom Lane
2010-01-07Document why we copy reloptions into CacheMemoryContext after-the-fact.Robert Haas
2010-01-07Fix 3-parameter form of bit substring() to throw error for negative length,Tom Lane
2010-01-07Make bit/varbit substring() treat any negative length as meaning "all the restTom Lane
2010-01-07Fix (some of the) breakage introduced into query-cancel processing by HS.Tom Lane
2010-01-07Remove all the special-case code for INT64_IS_BUSTED, per decision thatTom Lane
2010-01-07More tablespace.c comment improvements.Bruce Momjian
2010-01-07Clarify tablespace.c::TablespaceCreateDbspace() comments.Bruce Momjian
2010-01-07Further fixes for per-tablespace options patch.Robert Haas
2010-01-07Improve a couple of comments relating to large object snapshot management.Robert Haas
2010-01-06PG_MAJORVERSION:Bruce Momjian