summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2010-04-02Update a number of broken links in comments.Magnus Hagander
2010-04-01Refer to max_wal_senders in a more consistent fashion.Robert Haas
2010-03-30Fix "constraint_exclusion = partition" logic so that it will also attemptTom Lane
2010-03-28Rework join-removal logic as per recent discussion. In particular thisTom Lane
2010-03-28Derive latestRemovedXid for btree deletes by reading heap pages. TheSimon Riggs
2010-03-25Prevent ALTER USER f RESET ALL from removing the settings that were put thereAlvaro Herrera
2010-03-20Further corrections of mismatching struct and btree SizeOf macros.Simon Riggs
2010-03-19Fix oversight in btpo.xact patch; it was in fact installing garbageTom Lane
2010-03-19Update XLOG_PAGE_MAGIC to recognise WAL format changes.Simon Riggs
2010-03-19Adjust comment in .history file to match recovery target specified. CommentSimon Riggs
2010-03-19Reset btpo.xact following recovery of btree delete page. Add btpo_xactSimon Riggs
2010-03-17Pass incompletely-transformed aggregate argument lists as separate parametersTom Lane
2010-03-13Add libpq warning message if the .pgpass-retrieved password fails.Bruce Momjian
2010-03-11Update comment for pg_constraint.conindid to mention that it's used forTom Lane
2010-03-03Export xml.c's libxml-error-handling support so that contrib/xml2 can use itTom Lane
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-23Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane
2010-02-20Clean up handling of XactReadOnly and RecoveryInProgress checks.Tom Lane
2010-02-19Revert version stamping in wrong branchPeter Eisentraut
2010-02-19Version stamp 9.0alpha4Peter Eisentraut
2010-02-19Don't use O_DIRECT when writing WAL files if archiving or streaming isHeikki Linnakangas
2010-02-17Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane
2010-02-16Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane
2010-02-16Add query text to auto_explain output.Andrew Dunstan
2010-02-16Add emulation of non-blocking sockets to the win32 socket/signal layer,Magnus Hagander
2010-02-15Speed up CREATE DATABASE by deferring the fsyncs until after copyingGreg Stark
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-02-13Don't expose the inline definition of MemoryContextSwitchTo when FRONTEND isTom Lane
2010-02-13Fix relcache init file invalidation during Hot Standby for the caseSimon Riggs
2010-02-13Support inlining various small performance-critical functions on non-GCCTom Lane
2010-02-13Re-enable max_standby_delay = -1 using deadlock detection on startupSimon Riggs
2010-02-13Introduce WAL records to log reuse of btree pages, allowing conflictSimon Riggs
2010-02-12Extend the set of frame options supported for window functions.Tom Lane
2010-02-11Generic implementation of red-black binary tree. It's planned to use inTeodor Sigaev
2010-02-09Fix up rickety handling of relation-truncation interlocks.Tom Lane
2010-02-08Create an official API function for C functions to use to check if they areTom Lane
2010-02-08Add C comments that HEAP_MOVED_* define usage is only for pre-9.0 binaryBruce Momjian
2010-02-08Remove CatalogCacheFlushRelation, and the reloidattr infrastructure that wasTom Lane
2010-02-08Remove old-style VACUUM FULL (which was known for a little while asTom Lane
2010-02-07Work around deadlock problems with VACUUM FULL/CLUSTER on system catalogs,Tom Lane
2010-02-07Create a "relation mapping" infrastructure to support changing the relfilenodesTom Lane
2010-02-04Restructure CLUSTER/newstyle VACUUM FULL/ALTER TABLE support so that swappingTom Lane
2010-02-03Add a message type header to the CopyData messages sent from primaryHeikki Linnakangas
2010-02-03Assorted cleanups in preparation for using a map file to support alteringTom Lane
2010-02-02Make RADIUS authentication use pg_getaddrinfo_all() to get address ofMagnus Hagander
2010-02-02Fold FindConversion() into FindConversionByName() and remove ACL check.Robert Haas
2010-02-01Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME.Robert Haas
2010-02-01Augment EXPLAIN output with more details on Hash nodes.Robert Haas
2010-02-01Revoke augmentation of WAL records for btree delete, per discussion.Simon Riggs
2010-02-01Add string_agg aggregate functions. The one argument version concatenatesItagaki Takahiro