summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2007-05-27Code cleanup: use "bool" for Boolean variables, rather than "int".Neil Conway
2007-05-27pgstat's on-proc-exit hook has to execute after the last transaction commitTom Lane
2007-05-27Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane
2007-05-24Remove ruleutils.c's use of varnoold/varoattno as a shortcut for determiningTom Lane
2007-05-21Teach tuplestore.c to throw away data before the "mark" point when the callerTom Lane
2007-05-21XPath fixes:Peter Eisentraut
2007-05-17Temporary fix for the problem that pg_stat_activity, inet_client_addr(),Tom Lane
2007-05-14Prevent RevalidateCachedPlan from making any permanent change inTom Lane
2007-05-11Support arrays of composite types, including the rowtypes of regular tablesTom Lane
2007-05-08Add a hash function for "numeric". Mark the equality operator forNeil Conway
2007-05-08The appended patch addresses the outstanding issues of the recent guc patch.Peter Eisentraut
2007-05-05Check return code from strxfrm on Windows since it has aMagnus Hagander
2007-05-04Add a line to the EXPLAIN ANALYZE output for a Sort node, showing theTom Lane
2007-05-04A few fixups in error handling: mark pg_re_throw() as noreturn for gcc,Tom Lane
2007-05-04Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane
2007-05-02Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane
2007-05-02Fix oversight in PG_RE_THROW processing: it's entirely possible that thereTom Lane
2007-04-30Change the timestamps recorded in transaction commit/abort xlog recordsTom Lane
2007-04-30Implement rate-limiting logic on how often backends will attempt to sendTom Lane
2007-04-30Marginal performance hack: remove the loop that used to be needed toTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-22Remove some of the most blatant brain-fade in the recent guc patchTom Lane
2007-04-21Some further performance tweaks for planning large inheritance trees thatTom Lane
2007-04-21Make configuration parameters fall back to their default values when theyPeter Eisentraut
2007-04-21Improve the way in which CatalogCacheComputeHashValue combines multiple keyTom Lane
2007-04-18Enable configurable log of autovacuum actions. Initial patch from SimonAlvaro Herrera
2007-04-16Tweak clean_encoding_name() API to avoid need to cast away const.Tom Lane
2007-04-16Add a multi-worker capability to autovacuum. This allows multiple workerAlvaro Herrera
2007-04-16Make plancache store cursor options so it can pass them to planner duringTom Lane
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-15Make JOHAB client only encoding per discussions in pgsql-hackersTatsuo Ishii
2007-04-15Fix description how to create conversion function.Tatsuo Ishii
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-06Make 'col IS NULL' clauses be indexable conditions.Tom Lane
2007-04-06Support varlena fields with single-byte headers and unaligned storage.Tom Lane
2007-04-05Update XML error message text for missing libxml; update regressionBruce Momjian
2007-04-05Improve documentation/warning when --with-libxml is not used in theBruce Momjian
2007-04-02Check length of enum literals on definition and input to make sure they will ...Andrew Dunstan
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-04-01Mapping schemas and databases to XML and XML Schema.Peter Eisentraut
2007-03-30Add some instrumentation to the bgwriter, through the stats collector.Magnus Hagander
2007-03-29Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane
2007-03-28Code cleanup for the new regexp UDFs: we can hardcode the OID and someNeil Conway
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-27Fix typo in Makefile.Bruce Momjian
2007-03-26Remove advertising clause from Berkeley BSD-licensed files, perBruce Momjian
2007-03-26Fix pg_wchar_table's maxmblen field of EUC_CN, EUC_TW, MULE_INTERNALTatsuo Ishii
2007-03-26Fix plancache's invalidation callback to do the right thing for a SITom Lane
2007-03-25Clean up the representation of special snapshots by including a "methodTom Lane