summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2010-08-24Add string functions: concat(), concat_ws(), left(), right(), and reverse().Itagaki Takahiro
2010-08-23Marginal code cleanup for streaming replication.Tom Lane
2010-08-21Add vacuum and analyze counters to pg_stat_*_tables views.Magnus Hagander
2010-08-19Remove extra newlines at end and beginning of files, add missing newlinesPeter Eisentraut
2010-08-18Rename utf2ucs() to utf8_to_unicode(), and export it so it can be usedTom Lane
2010-08-18Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane
2010-08-14MyBackendId now needs to be PGDLLIMPORT, so that contrib modules canTom Lane
2010-08-13Include the backend ID in the relpath of temporary relations.Robert Haas
2010-08-13Add xml_is_well_formed, xml_is_well_formed_document, xml_is_well_formed_contentTom Lane
2010-08-12Correct sundry errors in Hot Standby-related comments.Robert Haas
2010-08-10Add three-parameter forms of array_to_string and string_to_array, to allowTom Lane
2010-08-08Add an xpath_exists() function. This is equivalent to XMLEXISTS except thatTom Lane
2010-08-08Add stats functions and views to provide access to a transaction's ownTom Lane
2010-08-07Recognize functional dependency on primary keys. This allows a table'sTom Lane
2010-08-05Remove the single-argument form of string_agg(). It added nothing much inTom Lane
2010-08-05Standardize get_whatever_oid functions for other object types.Robert Haas
2010-08-05Standardize get_whatever_oid functions for object types withRobert Haas
2010-08-05Add xmlexists functionPeter Eisentraut
2010-08-04Fix declared argument name for numeric_maximum_size.Robert Haas
2010-08-03Replace the naive HYPOT() macro with a standards-conformant hypotenuseTom Lane
2010-08-01Fix ANALYZE's ancient deficiency of not trying to collect stats for expressionTom Lane
2010-08-01Fix an additional set of problems in GIN's handling of lossy page pointers.Tom Lane
2010-08-01Rewrite the rbtree routines so that an RBNode is the first field of theTom Lane
2010-07-31Rewrite the key-combination logic in GIN's keyGetItem() and scanGetItem()Tom Lane
2010-07-30Make details of the Numeric representation private to numeric.c.Robert Haas
2010-07-29Improved version of patch to protect pg_get_expr() against misuse:Tom Lane
2010-07-29Rename asyncCommitLSN to asyncXactLSN to reflect changed role in 9.0.Simon Riggs
2010-07-29Clean up some inconsistencies in the volatility marking of various I/OTom Lane
2010-07-29Add explicit regression tests for ALTER TABLE lock levels.Simon Riggs
2010-07-28Reduce lock levels of CREATE TRIGGER and some ALTER TABLE, CREATE RULE actions.Simon Riggs
2010-07-28Fix potential failure when hashing the output of a subplan that producesTom Lane
2010-07-25CREATE TABLE IF NOT EXISTS.Robert Haas
2010-07-22Add options to force quoting of all identifiers.Robert Haas
2010-07-22Centralize DML permissions-checking logic.Robert Haas
2010-07-20Add restart_after_crash GUC.Robert Haas
2010-07-16Add a log_file_mode GUC that allows control of the file permissions set onTom Lane
2010-07-16Add support for dividing money by money (yielding a float8 result) and forTom Lane
2010-07-13Teach EXPLAIN to print PARAM_EXEC Params as the referenced expressions,Tom Lane
2010-07-12Make NestLoop plan nodes pass outer-relation variables into their innerTom Lane
2010-07-09Add a hook in ExecCheckRTPerms().Robert Haas
2010-07-09Stamp HEAD as 9.1devel.Tom Lane
2010-07-09tag beta3REL9_0_BETA3Marc G. Fournier
2010-07-06pgindent run for 9.0, second runBruce Momjian
2010-07-05The previous fix in CVS HEAD and 8.4 for handling the case where a cursorHeikki Linnakangas
2010-07-03Replace max_standby_delay with two parameters, max_standby_archive_delay andTom Lane
2010-07-03Allow REASSIGNED OWNED to handle opclasses and opfamilies.Robert Haas
2010-06-29Use different function names for plpython3 handlers, to avoid clashes inPeter Eisentraut
2010-06-17Clean up some randomness associated with trace_recovery_messages: don'tTom Lane
2010-06-17Don't allow walsender to send WAL data until it's been safely fsync'd on theTom Lane
2010-06-17Remove prototype of GetOldestWALSendPointer(), that is marked as NOT_USED.Itagaki Takahiro