summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-06-28Improve planner estimates for size of tuple hash tables.Tom Lane
2006-06-28Fix hash aggregation to suppress unneeded columns from being stored inTom Lane
2006-06-28Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane
2006-06-28Forget to add new file :((Teodor Sigaev
2006-06-28ChangesTeodor Sigaev
2006-06-27Remove embedded newline in string literal --- seems to make newer gccTom Lane
2006-06-27Add GUC update_process_title to control whether 'ps' display is updatedBruce Momjian
2006-06-27Convert hash join code to use MinimalTuple format in tuple hash tableTom Lane
2006-06-27Default stats_command_string to 'on', now that its overhead is minimal.Bruce Momjian
2006-06-27Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane
2006-06-27Revert patch, doesn't do what it should:Bruce Momjian
2006-06-27Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane
2006-06-27Clamp last_anl_tuples to n_live_tuples, in case we vacuum a table withoutAlvaro Herrera
2006-06-27Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian
2006-06-27Disallow changing/dropping default expression of a SERIAL columnBruce Momjian
2006-06-27Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane
2006-06-26Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane
2006-06-26Update comment description of geo routines and move comment to moreBruce Momjian
2006-06-25Tweak dynahash.c to avoid wasting memory space in non-shared hash tables.Tom Lane
2006-06-22Remove dllinit.c; it was only needed for long-obsolete Cygwin versions,Tom Lane
2006-06-22pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane
2006-06-22Standalone backends need pgstat_bestart() too, per Qingqing Zhou.Tom Lane
2006-06-21Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involvingTom Lane
2006-06-21Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane
2006-06-21Eliminate a gratuitously different wording of the 'cannot use aggregate funct...Tom Lane
2006-06-20Remove redundant gettimeofday() calls to the extent practical withoutTom Lane
2006-06-20Split definitions for md5.c out of crypt.h and into their own headerTom Lane
2006-06-19Take the statistics collector out of the loop for monitoring backends'Tom Lane
2006-06-18Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane
2006-06-18Merge postmaster and postgres command into just postgres. postmasterPeter Eisentraut
2006-06-16Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane
2006-06-16DROP ... IF EXISTS for the following cases:Andrew Dunstan
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-06-16Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian
2006-06-15Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian
2006-06-15Remove the limit on the number of entries allowed in catcaches, andTom Lane
2006-06-14Do a CHECK_FOR_INTERRUPTS immediately before terminating a fastpathTom Lane
2006-06-12Avoid use of C commment inside C comment from recent Win32 int overflow patch.Bruce Momjian
2006-06-12Prevent Win32 from displaying a popup box on backend crash. Instead letBruce Momjian
2006-06-12Win32 can't catch the exception thrown by INT_MIN / -1 or INT_MIN * -1,Bruce Momjian
2006-06-12Minor code cleanup: make the WIN32 case less gratuitously different fromTom Lane
2006-06-11Fix Assert failure when a fastpath function call is attempted inside anTom Lane
2006-06-09Revert sampling patch for EXPLAIN ANALYZE; it turns out to be too unreliableTom Lane
2006-06-08Fix bootstrap.c so that database startup process and bgwriter properly releaseTom Lane
2006-06-08Remove Win32 file, moved to /port.Bruce Momjian
2006-06-08Remove obsolete comment about VACUUM FULL: it takes buffer content locksTom Lane
2006-06-07Allow timezone names in SQL strings,Bruce Momjian
2006-06-07Prepare code to be built by MSVC:Bruce Momjian
2006-06-07Per previous analysis, the most correct notion of SampleOverhead is thatTom Lane
2006-06-07Have REINDEX use NOTICE, so it can be suppressed.Bruce Momjian