aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAge
* Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway2006-07-02
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-02
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-02
* Fix oversight in planning for multiple indexscans driven byTom Lane2006-07-01
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-01
* Remove the separate 'stats buffer' process, letting backend stats messagesTom Lane2006-06-29
* Change TRUNCATE's method for searching for foreign-key references so thatTom Lane2006-06-29
* Fix typo in comment.Neil Conway2006-06-28
* Improve planner estimates for size of tuple hash tables.Tom Lane2006-06-28
* Fix hash aggregation to suppress unneeded columns from being stored inTom Lane2006-06-28
* Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane2006-06-28
* Forget to add new file :((Teodor Sigaev2006-06-28
* ChangesTeodor Sigaev2006-06-28
* Remove embedded newline in string literal --- seems to make newer gccTom Lane2006-06-27
* Add GUC update_process_title to control whether 'ps' display is updatedBruce Momjian2006-06-27
* Convert hash join code to use MinimalTuple format in tuple hash tableTom Lane2006-06-27
* Default stats_command_string to 'on', now that its overhead is minimal.Bruce Momjian2006-06-27
* Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane2006-06-27
* Revert patch, doesn't do what it should:Bruce Momjian2006-06-27
* Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane2006-06-27
* Clamp last_anl_tuples to n_live_tuples, in case we vacuum a table withoutAlvaro Herrera2006-06-27
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-27
* Disallow changing/dropping default expression of a SERIAL columnBruce Momjian2006-06-27
* Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane2006-06-27
* Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane2006-06-26
* Update comment description of geo routines and move comment to moreBruce Momjian2006-06-26
* Tweak dynahash.c to avoid wasting memory space in non-shared hash tables.Tom Lane2006-06-25
* Remove dllinit.c; it was only needed for long-obsolete Cygwin versions,Tom Lane2006-06-22
* pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane2006-06-22
* Standalone backends need pgstat_bestart() too, per Qingqing Zhou.Tom Lane2006-06-22
* Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involvingTom Lane2006-06-21
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-21
* Eliminate a gratuitously different wording of the 'cannot use aggregate funct...Tom Lane2006-06-21
* Remove redundant gettimeofday() calls to the extent practical withoutTom Lane2006-06-20
* Split definitions for md5.c out of crypt.h and into their own headerTom Lane2006-06-20
* Take the statistics collector out of the loop for monitoring backends'Tom Lane2006-06-19
* Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane2006-06-18
* Merge postmaster and postgres command into just postgres. postmasterPeter Eisentraut2006-06-18
* Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane2006-06-16
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-16
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-16
* Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian2006-06-16
* Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian2006-06-15
* Remove the limit on the number of entries allowed in catcaches, andTom Lane2006-06-15
* Do a CHECK_FOR_INTERRUPTS immediately before terminating a fastpathTom Lane2006-06-14
* Avoid use of C commment inside C comment from recent Win32 int overflow patch.Bruce Momjian2006-06-12
* Prevent Win32 from displaying a popup box on backend crash. Instead letBruce Momjian2006-06-12
* Win32 can't catch the exception thrown by INT_MIN / -1 or INT_MIN * -1,Bruce Momjian2006-06-12
* Minor code cleanup: make the WIN32 case less gratuitously different fromTom Lane2006-06-12
* Fix Assert failure when a fastpath function call is attempted inside anTom Lane2006-06-11