summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway2006-07-023-136/+131
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-0240-236/+1159
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-023-11/+528
* Fix oversight in planning for multiple indexscans driven byTom Lane2006-07-012-38/+82
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-0115-261/+426
* Remove the separate 'stats buffer' process, letting backend stats messagesTom Lane2006-06-292-528/+146
* Change TRUNCATE's method for searching for foreign-key references so thatTom Lane2006-06-291-53/+92
* Fix typo in comment.Neil Conway2006-06-281-4/+4
* Improve planner estimates for size of tuple hash tables.Tom Lane2006-06-282-6/+8
* Fix hash aggregation to suppress unneeded columns from being stored inTom Lane2006-06-281-8/+110
* Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane2006-06-283-22/+20
* Forget to add new file :((Teodor Sigaev2006-06-281-0/+538
* ChangesTeodor Sigaev2006-06-285-564/+185
* Remove embedded newline in string literal --- seems to make newer gccTom Lane2006-06-271-3/+2
* Add GUC update_process_title to control whether 'ps' display is updatedBruce Momjian2006-06-2712-48/+68
* Convert hash join code to use MinimalTuple format in tuple hash tableTom Lane2006-06-273-64/+107
* Default stats_command_string to 'on', now that its overhead is minimal.Bruce Momjian2006-06-272-3/+3
* Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane2006-06-271-2/+14
* Revert patch, doesn't do what it should:Bruce Momjian2006-06-273-141/+3
* Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane2006-06-273-135/+120
* Clamp last_anl_tuples to n_live_tuples, in case we vacuum a table withoutAlvaro Herrera2006-06-271-2/+9
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-276-30/+136
* Disallow changing/dropping default expression of a SERIAL columnBruce Momjian2006-06-273-3/+141
* Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane2006-06-278-97/+438
* Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane2006-06-262-23/+89
* Update comment description of geo routines and move comment to moreBruce Momjian2006-06-261-11/+10
* Tweak dynahash.c to avoid wasting memory space in non-shared hash tables.Tom Lane2006-06-251-8/+43
* Remove dllinit.c; it was only needed for long-obsolete Cygwin versions,Tom Lane2006-06-221-6/+3
* pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane2006-06-221-33/+28
* Standalone backends need pgstat_bestart() too, per Qingqing Zhou.Tom Lane2006-06-221-2/+2
* Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involvingTom Lane2006-06-211-25/+5
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-211-4/+11
* Eliminate a gratuitously different wording of the 'cannot use aggregate funct...Tom Lane2006-06-211-2/+2
* Remove redundant gettimeofday() calls to the extent practical withoutTom Lane2006-06-209-221/+251
* Split definitions for md5.c out of crypt.h and into their own headerTom Lane2006-06-206-12/+11
* Take the statistics collector out of the loop for monitoring backends'Tom Lane2006-06-197-896/+572
* Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane2006-06-181-5/+7
* Merge postmaster and postgres command into just postgres. postmasterPeter Eisentraut2006-06-189-345/+285
* Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane2006-06-162-13/+7
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-1612-53/+260
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-1627-210/+504
* Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian2006-06-161-2/+2
* Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian2006-06-151-25/+33
* Remove the limit on the number of entries allowed in catcaches, andTom Lane2006-06-152-193/+173
* Do a CHECK_FOR_INTERRUPTS immediately before terminating a fastpathTom Lane2006-06-141-1/+4
* Avoid use of C commment inside C comment from recent Win32 int overflow patch.Bruce Momjian2006-06-121-3/+3
* Prevent Win32 from displaying a popup box on backend crash. Instead letBruce Momjian2006-06-121-1/+4
* Win32 can't catch the exception thrown by INT_MIN / -1 or INT_MIN * -1,Bruce Momjian2006-06-121-1/+23
* Minor code cleanup: make the WIN32 case less gratuitously different fromTom Lane2006-06-121-33/+24
* Fix Assert failure when a fastpath function call is attempted inside anTom Lane2006-06-112-6/+24