summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2006-06-07Remove "fuzzy comparison" logic in qsort comparison function forTom Lane
2006-06-07Use INFO-level for reindex messages, rather than NOTICE.Bruce Momjian
2006-06-06Make the planner estimate costs for nestloop inner indexscans on the basisTom Lane
2006-06-05While making the seq_page_cost changes, I was struck by the fact thatTom Lane
2006-06-05Increase the default value of cpu_index_tuple_cost from 0.001 to 0.005.Tom Lane
2006-06-05Add a GUC parameter seq_page_cost, and use that everywhere we formerlyTom Lane
2006-06-03Don't choke during startup if the environment offers an invalid valueTom Lane
2006-06-03Fix copy-and-pasteo in Russian translation: message complaining aboutTom Lane
2006-05-31Make PG_MODULE_MAGIC required in shared libraries that are loaded intoTom Lane
2006-05-30Magic blocks don't do us any good unless we use 'em ... so install oneTom Lane
2006-05-30Code review for magic-block patch. Remove separate header file pgmagic.h,Tom Lane
2006-05-30Code review for EXPLAIN patch. Fix some typos, make it behave sanelyTom Lane
2006-05-30PostmasterIsAlive test really ought to be in the inner loop for safety.Tom Lane
2006-05-30Add pgmagic header block to store compile-time constants:Bruce Momjian
2006-05-30Make EXPLAIN sampling smarter, to avoid excessive sampling delay.Bruce Momjian
2006-05-30Clarify the HINT for 'checkpoint request failed', per recent complaintTom Lane
2006-05-30Move conversion dependency patch to the proper branch, out of 8.1.X,Bruce Momjian
2006-05-30Prevent multiple archivers from starting. Backpatch to 8.1.X.Bruce Momjian
2006-05-30Fix printf mask for SizeVfdCacheBruce Momjian
2006-05-30Fix ancient misdescription of namegt/namege in comment. Greg StarkTom Lane
2006-05-30Patch reverted because of random buildfarm failures:Bruce Momjian
2006-05-29Som improve page split in multicolumn GiST index.Teodor Sigaev
2006-05-29Correct cheking in findParents(). iTeodor Sigaev
2006-05-28Fix up pg_dump to do string escaping fully correctly for client encodingTom Lane
2006-05-28Remove traces of otherwise unused RELKIND_SPECIAL symbol. Leave the psql bitsAlvaro Herrera
2006-05-27Re-introduce the yylex filter function formerly used to support UNIONTom Lane
2006-05-26Use E'' strings internally only when standard_conforming_strings =Bruce Momjian
2006-05-26Further hacking on performance of COPY OUT. It seems that fwrite()'sTom Lane
2006-05-26Fix findParents() in case of multiple levels to find.Teodor Sigaev
2006-05-25Reduce per-character overhead in COPY OUT by combining calls toTom Lane
2006-05-24* Add support NULL to GiST.Teodor Sigaev