summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-03-12Fix ALTER DATABASE RENAME to allow the operation if user is a superuserTom Lane
2005-03-12Adjust the API for aggregate function calls so that a C-coded functionTom Lane
2005-03-12Handle carriage returns and line feeds in COPY CSV mode.Bruce Momjian
2005-03-12Add warning about the need to increase "max_fsm_relations" andBruce Momjian
2005-03-12Fix problem with infinite recursion between write_syslogger_file andTom Lane
2005-03-11Add fprintf() custom version to libpgport.Bruce Momjian
2005-03-11Slight refactoring and optimization of some code in WaitOnLock().Neil Conway
2005-03-10Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane
2005-03-10Refactor fork()-related code. We need to do various housekeeping tasksNeil Conway
2005-03-07Unbreak out-of-tree builds, by fixing a typo.Neil Conway
2005-03-07Adjust creation/destruction of TupleDesc data structure to reduce theTom Lane
2005-03-07Rename canonical encodings, per Peter:Bruce Momjian
2005-03-07Here's a tiny fix for a harmless typo in catalog.c:Neil Conway
2005-03-06Revise hash join code so that we can increase the number of batchesTom Lane
2005-03-04Replace the BufMgrLock with separate locks on the lookup hashtable andTom Lane
2005-03-02Another go at making pred_test() handle all reasonable combinationsTom Lane
2005-03-01Release proclock immediately in RemoveFromWaitQueue() if it representsTom Lane
2005-03-01Allow Trace_lock_oidmin to be set to zero; this is a reasonableTom Lane
2005-03-01Adjust OR indexscan logic to not generate redundant condition-free ORTom Lane
2005-03-01Revert the logic for expanding AND/OR conditions in pred_test() to whatTom Lane
2005-02-28Implement max() and min() aggregates for array types. Patch from KojuNeil Conway
2005-02-27Add explicit casts between int4 and boolean. Patch from Sean Chittenden,Neil Conway
2005-02-27Cause Win32 to output to the event log rather than stderr by default.Bruce Momjian
2005-02-26Finish up the flat-files project: get rid of GetRawDatabaseInfo() hackTom Lane
2005-02-23Minor code cleanup: remove a variable that was assigned to but neverNeil Conway
2005-02-23This patch optimizes the md5_text() function (which is used toNeil Conway
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-02-20Use SnapshotNow instead of SnapshotSelf for reading the catalogsTom Lane
2005-02-20Remove some no-longer-needed kluges for bootstrapping, in particularTom Lane
2005-02-20Rename macro to MAKE_EXPIRED_TUPLES_VISIBLE.Bruce Momjian
2005-02-20Fix MAKE_ALL_TUPLES_VISIBLE define.Bruce Momjian
2005-02-20Move define MAKE_ALL_TUPLES_VISIBLE to a more logical place.Bruce Momjian
2005-02-20I have added a define, MAKE_ALL_TUPLES_VISIBLE, to help people recoverBruce Momjian
2005-02-20Flat file cleanup phase 2: make it work for pg_group. The flat groupTom Lane
2005-02-20Add code to prevent transaction ID wraparound by enforcing a safe limitTom Lane
2005-02-19New arrangement to always let the bgwriter do checkpoints brokeTom Lane
2005-02-19Ensure that the resolved datatype of any unknown Param is propagatedTom Lane
2005-02-18Convert MemoryContextSwitchTo() into an inline function when using GCC.Tom Lane
2005-02-15Update comment on VACUUM FULL.Bruce Momjian
2005-02-14Improve documentation of signal usage for HAVE_SIGPROCMASK andBruce Momjian
2005-02-14Improve documentation of signal usage for HAVE_SIGPROCMASK andBruce Momjian
2005-02-14ALTER LANGUAGE RENAME has never worked. Per Sergey Yatskevich.Tom Lane
2005-02-12Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requestedBruce Momjian
2005-02-11Adjust input routines for float4, float8 and oid to reject the empty stringNeil Conway
2005-02-11Fix ANALYZE to accumulate some minimal statistics for an all-null column.Tom Lane
2005-02-10Fix SPI cursor support to allow scanning the results of utility commandsTom Lane
2005-02-09ALTER TABLE ADD COLUMN exhibits a significant memory leak when adding aNeil Conway
2005-02-06Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns outTom Lane
2005-02-05Fix bit-rot in ipc_test.c; it didn't include some stuff that pg_shmem.cTom Lane
2005-02-05Marginal hack to merge adjacent ReleaseBuffer/ReadBuffer calls intoTom Lane