summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-08-02Make sure syslogPipe runs in binary mode on Windows to avoid corrupting the p...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-31If we're gonna use ExecRelationIsTargetRelation here, might as wellTom Lane
2007-07-31Fix security definer functions with polymorphic arguments. This case hasTom Lane
2007-07-27Slight refactor for ExecOpenScanRelation(): we can useNeil Conway
2007-07-26Remove FileUnlink(), which wasn't being used anywhere and interacted poorlyTom Lane
2007-07-25Arrange to put TOAST tables belonging to temporary tables into special schemasTom Lane
2007-07-25Suppress warning when compiling with -DPROFILE_PID_DIR: sys/stat.h isTom Lane
2007-07-25Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict withMagnus Hagander
2007-07-24Fix predicate-proving logic to cope with binary-compatibility cases whenTom Lane
2007-07-24Silence compiler warning on mingwMagnus Hagander
2007-07-24Make it possible, and default, for MingW to build with SSPI supportMagnus 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-23SSPI authentication on Windows. GSSAPI compatible client when doing KerberosMagnus Hagander
2007-07-21Fix elog.c to avoid infinite recursion (leading to backend crash) whenTom Lane
2007-07-20Fix WAL replay of truncate operations to cope with the possibility that theTom 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-18Fix an old thinko in SS_make_initplan_from_plan, which is used when optimizingTom Lane
2007-07-18Properly adjust age() seconds to match the sign of the larger units.Bruce Momjian
2007-07-17Fix incorrect optimization of foreign-key checks. When an UPDATE on theTom Lane
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-17Fix outfuncs.c to dump A_Const nodes representing NULLs correctly. This hasTom Lane
2007-07-16Add comments spelling out why it's a good idea to release multipleTom Lane
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-12Fix some warnings (probably actual bugs) generated by new GSSAPI codeTom Lane
2007-07-12Fix mistaken Assert in adjust_appendrel_attr_needed, per Greg Stark.Tom Lane
2007-07-12Enable GSSAPI to build using MSVC. Always build GSSAPI when Kerberos isMagnus Hagander
2007-07-12Support GSSAPI builds where the header is <gssapi.h> and not <gssapi/gssapi.h>,Magnus Hagander
2007-07-11A bunch of GSSAPI fixes per comments from Tom:Magnus Hagander
2007-07-10Add support for GSSAPI authentication.Magnus Hagander
2007-07-09Fix stddev_pop(numeric) and var_pop(numeric), which were incorrectly producingTom Lane
2007-07-09Fix single-user mode so that interrupts (particularly SIGTERM andTom Lane
2007-07-08Remove the pgstat_drop_relation() call from smgr_internal_unlink(), becauseTom Lane
2007-07-07Fix a couple of planner bugs introduced by the new ability to discardTom Lane
2007-07-06Fix up hash functions for datetime datatypes so that they don't takeTom Lane
2007-07-03Fix incorrect comment about the timing of AbsorbFsyncRequests() duringTom Lane
2007-07-03Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway
2007-07-02Fix failure to restart Postgres when Linux kernel returns EIDRM for shmctl().Tom Lane
2007-07-01Reduce the maximum sleep interval in the autovac launcher to 1 second,Tom Lane
2007-07-01Treat the autovac launcher more like a regular backend, in that we waitTom Lane
2007-07-01Avoid memory leakage when a series of subtransactions invoke AFTER triggersTom Lane