summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2011-11-08Make VACUUM avoid waiting for a cleanup lock, where possible.Robert Haas
2011-11-07Fix timestamp range subdiff functions, when using float datetimes.Heikki Linnakangas
2011-11-05Don't assume that a tuple's header size is unchanged during toasting.Tom Lane
2011-11-04Move user functions related to WAL into xlogfuncs.cSimon Riggs
2011-11-03Fix inline_set_returning_function() to allow multiple OUT parameters.Tom Lane
2011-11-03Do not treat a superuser as a member of every role for HBA purposes.Andrew Dunstan
2011-11-03Support range data types.Heikki Linnakangas
2011-11-03Fix handling of PlaceHolderVars in nestloop parameter management.Tom Lane
2011-11-02Avoid scanning nulls at the beginning of a btree index scan.Tom Lane
2011-11-02Fix btree stop-at-nulls logic properly.Tom Lane
2011-11-02Update more comments about checkpoints being done by bgwriterSimon Riggs
2011-11-02Reduce checkpoints and WAL traffic on low activity database serverSimon Riggs
2011-11-02Refactor xlog.c to create src/backend/postmaster/startup.cSimon Riggs
2011-11-02Derive oldestActiveXid at correct time for Hot Standby.Simon Riggs
2011-11-02Start Hot Standby faster when initial snapshot is incomplete.Simon Riggs
2011-11-02Remove spurious entry from missed catch while patch jugglingSimon Riggs
2011-11-02Fix timing of Startup CLOG and MultiXact during Hot StandbySimon Riggs
2011-11-02Initialize myProcLocks queues just once, at postmaster startup.Robert Haas
2011-11-02Preserve Var location information during flatten_join_alias_vars.Tom Lane
2011-11-01Fix race condition with toast table access from a stale syscache entry.Tom Lane
2011-11-01Clean up whitespace and indentation in parser and scanner filesPeter Eisentraut
2011-11-01Comment changes to show bgwriter no longer performs checkpoints.Simon Riggs
2011-11-01Have checkpointer send stats once each processing loop.Simon Riggs
2011-11-01Add new file for checkpointer.cSimon Riggs
2011-11-01Split work of bgwriter between 2 processes: bgwriter and checkpointer.Simon Riggs
2011-10-31Stop btree indexscans upon reaching nulls in either direction.Tom Lane
2011-10-30Support more locale-specific formatting options in cash_out().Tom Lane
2011-10-30Further improvement of make_greater_string.Tom Lane
2011-10-29Update visibilitymap.c header comments.Robert Haas
2011-10-29Fix assorted bogosities in cash_in() and cash_out().Tom Lane
2011-10-29Improve make_greater_string() with encoding-specific incrementers.Robert Haas
2011-10-28Allow hint bits to be set sooner for temporary and unlogged tables.Robert Haas
2011-10-27Fix the number of lwlocks needed by the "fast path" lock patch. It needsHeikki Linnakangas
2011-10-26Improve planner's ability to recognize cases where an IN's RHS is unique.Tom Lane
2011-10-26Change FK trigger naming convention to fix self-referential FKs.Tom Lane
2011-10-26Change FK trigger creation order to better support self-referential FKs.Tom Lane
2011-10-25Make event_source visible on all platformsMagnus Hagander
2011-10-25Support configurable eventlog application names on WindowsMagnus Hagander
2011-10-23Don't trust deferred-unique indexes for join removal.Tom Lane
2011-10-22Support synchronization of snapshots through an export/import procedure.Tom Lane
2011-10-22Fix overly-complicated usage of errcode_for_file_access().Heikki Linnakangas
2011-10-21Code review for pgstat_get_crashed_backend_activity patch.Tom Lane
2011-10-21More cleanup after failed reduced-lock-levels-for-DDL feature.Tom Lane
2011-10-21Try to log current the query string when a backend crashes.Robert Haas
2011-10-21Fix DROP OPERATOR FAMILY IF EXISTS.Robert Haas
2011-10-20Simplify and improve ProcessStandbyHSFeedbackMessage logic.Tom Lane
2011-10-20Fix get_object_namespace() not to think extensions are "in" a schema.Robert Haas
2011-10-20Add "skipping" to the NOTICE produced by DROP OPERATOR CLASS IF EXISTS.Robert Haas
2011-10-20Consolidate DROP handling for some object types.Robert Haas
2011-10-19Suppress -Wunused-result warnings about write() and fwrite().Tom Lane