summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2007-09-03Implement function-local GUC parameter settings, as per recent discussion.Tom Lane
2007-09-01Since sort_bounded_heap makes state changes that should be madeTom Lane
2007-08-31Apply a band-aid fix for the problem that 8.2 and up completely misestimateTom Lane
2007-08-31Install check_stack_depth() protection in two recursive tsqueryTom Lane
2007-08-30Fix int8mul so that overflow check is applied correctly for INT64_IS_BUSTEDTom Lane
2007-08-29Relax permissions checks on dbsize functions, per discussion. Revert out allTom Lane
2007-08-27Remove the 'not in' operator (!!=). This was a hangover from BerkeleyTom Lane
2007-08-27Restrict pg_relation_size to relation owner, pg_database_size to DB owner,Tom Lane
2007-08-27Make currtid() functions require SELECT privileges on the target table.Tom Lane
2007-08-23Reduce memory requirements for writing CSVlogs, so it will work with aboutAndrew Dunstan
2007-08-22Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by treating theTom Lane
2007-08-21Remove extraneous semicolon --- buildfarm member bear, for one,Tom Lane
2007-08-21Fix cash_mul_int4 and cash_div_int4 for overenthusiastic substitutionTom Lane
2007-08-21Fix money type's send/receive functions to conform to recent wideningTom Lane
2007-08-21Fix potential access-off-the-end-of-memory in varbit_out(): it fetched theTom Lane
2007-08-21Fix a small 64-bit problem in tsearch patch.Tom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-19Provide for logfiles in machine readable CSV format. In consequence, renameAndrew Dunstan
2007-08-15Repair problems occurring when multiple RI updates have to be done to the sameTom Lane
2007-08-14Fix oversight in async-commit patch: there were some places in heapam.cTom Lane
2007-08-13TEMPORARILY make synchronous_commit default to OFF, so that we can get moreTom Lane
2007-08-12Remove an "optimization" I installed in 2001, to make repalloc() attempt toTom Lane
2007-08-11Avoid memory leakage across successive calls of regexp_matches() orTom Lane
2007-08-11Code review for regexp_matches/regexp_split patch. Refactor to avoid assumingTom Lane
2007-08-08Fix thinko in multi-autovac-workers code: validity checks made byTom Lane
2007-08-07Adjust the output of MemoryContextStats() so that the stats for aNeil Conway
2007-08-04Fix up bad layout of some comments (probably pg_indent's fault), andTom Lane
2007-08-04Fix crash caused by log_timezone patch if we attempt to emit any elog messagesTom Lane
2007-08-04Switch over to using the src/timezone functions for formatting timestampsTom Lane
2007-08-02Move session_start out of MyProcPort stucture and make it a global called MyS...Andrew Dunstan
2007-08-02Fix a memory leak in tuplestore_end(). Unlikely to be significant duringNeil Conway
2007-08-01Support an optional asynchronous commit mode, in which we don't flush WALTom Lane
2007-07-31Fix security definer functions with polymorphic arguments. This case hasTom Lane
2007-07-25Arrange to put TOAST tables belonging to temporary tables into special schemasTom Lane
2007-07-25Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict withMagnus Hagander
2007-07-24Create a new dedicated Postgres process, "wal writer", which exists to writeTom Lane
2007-07-24Set a default autovacuum vacuum_cost_delay value of 20ms, to avoid excessiveAlvaro Herrera
2007-07-21Fix elog.c to avoid infinite recursion (leading to backend crash) whenTom Lane
2007-07-19On second thought, the tests for what to do with stderr output are aTom Lane
2007-07-19Make replace(), split_part(), and string_to_array() behave somewhat sanelyTom Lane
2007-07-19Only use the pipe chunking protocol if we know the syslogger shouldAndrew Dunstan
2007-07-18Properly adjust age() seconds to match the sign of the larger units.Bruce Momjian
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-13Fix map_sql_typecoll_to_xmlschema_types() to not fail on droppedTom Lane
2007-07-13Add casts to suppress warnings about m68k-specific kluge in fmgr.c.Tom Lane
2007-07-12Fix a portability bug (ye olde not casting a <ctype.h> argument toTom Lane
2007-07-12Suppress an integer-overflow warning.Tom Lane
2007-07-12Some of our port-specific dynloader implementations are careful toTom Lane
2007-07-12Compute max and min int8 values using unsigned arithmetic, in hopes ofTom Lane
2007-07-10Add support for GSSAPI authentication.Magnus Hagander