summaryrefslogtreecommitdiff
path: root/src/include/utils
AgeCommit message (Expand)Author
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-18Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane
2008-04-17Re-enable pg_terminate_backend() using SIGTERM. SIGTERM testing stillBruce Momjian
2008-04-16Repair two places where SIGTERM exit could leave shared memory stateTom Lane
2008-04-15Revert addition of pg_terminate_backend() because of race conditions.Bruce Momjian
2008-04-15Add pg_terminate_backend() to allow terminating only a single session.Bruce Momjian
2008-04-13Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2008-04-04Re-implement division for numeric values using the traditional "schoolbook"Tom Lane
2008-04-04Implement current_query(), that shows the currently executing query.Bruce Momjian
2008-04-04Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander
2008-04-02Convert three more guc settings to enum type:Magnus Hagander
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-03-24Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane
2008-03-23Create a function quote_nullable(), which works the same as quote_literal()Tom Lane
2008-03-21Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventingTom Lane
2008-03-17Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander
2008-03-16When creating a large hash index, pre-sort the index entries by estimatedTom Lane
2008-03-16Some cleanups of enum-guc code, per comments from Tom.Magnus Hagander
2008-03-13Fix heap_page_prune's problem with failing to send cache invalidationTom Lane
2008-03-10Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander
2008-03-09Change patternsel() so that instead of switching from a pureTom Lane
2008-03-07This patch addresses some issues in TOAST compression strategy thatTom Lane
2008-02-23Change the declaration of struct varlena so that the length word isTom Lane
2008-02-17Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane
2008-01-23Prevent integer overflow within the integer-datetimes version ofTom Lane
2008-01-15Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane
2008-01-01Fix some missed copyright updates.Tom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-28Improve consistency of error reporting in GUC assign_hook routines. SomeTom Lane
2007-12-08Fix mergejoin cost estimation so that we consider the statistical ranges ofTom Lane
2007-12-01Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-07Improve the performance of LIKE/regex estimation in non-C locales, by makingTom Lane
2007-11-07Use "alternative" instead of "alternate" where it is clearer.Peter Eisentraut
2007-10-13Migrate the former contrib/txid module into core. This will make it easierTom Lane
2007-10-13Fix ALTER COLUMN TYPE to preserve the tablespace and reloptions of indexesTom Lane
2007-09-25Change on-disk representation of NUMERIC datatype so that the sign_dscaleTom Lane
2007-09-24Remove "convert 'blah' using conversion_name" facility, because if itAndrew Dunstan
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-09-18Close previously open holes for invalidly encoded data to enter theAndrew Dunstan
2007-09-11Arrange for SET LOCAL's effects to persist until the end of the current topTom Lane
2007-09-10Code review for GUC revert-values-if-removed-from-postgresql.conf patch;Tom Lane
2007-09-04Provide for binary input/output of enums, to fix complaint from Merlin Moncure.Andrew Dunstan