summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* On Win32, make minimum setitimer() sleep be 1ms, so sleeps < 1ms aren'tBruce Momjian2006-08-091-1/+7
* Fix statement_timeout on Win32 so that it properly treats micro-secondsBruce Momjian2006-08-091-2/+3
* prevent multiplexing Windows kernel event objects we listen for across variou...Andrew Dunstan2006-07-291-1/+11
* Fix oversight in sizing of shared buffer lookup hashtable. BecauseTom Lane2006-07-231-4/+9
* Hmm, seems --disable-spinlocks has been broken for awhile and nobodyTom Lane2006-07-221-4/+4
* Don't try to truncate multixact SLRU files in checkpoints done during xlogTom Lane2006-07-201-3/+8
* Ensure that we retry rather than erroring out when send() or recv() returnTom Lane2006-07-162-7/+33
* Fix ALTER TABLE to check pre-existing NOT NULL constraints when rewritingTom Lane2006-07-101-31/+38
* Fix typo.Tom Lane2006-06-271-2/+2
* Clamp last_anl_tuples to n_live_tuples, in case we vacuum a table withoutAlvaro Herrera2006-06-271-2/+9
* Tweak dynahash.c to avoid wasting memory space in non-shared hash tables.Tom Lane2006-06-251-8/+43
* pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane2006-06-221-33/+28
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-211-3/+10
* Avoid use of C commment inside C comment from recent Win32 int overflow patch.Bruce Momjian2006-06-121-3/+3
* Win32 can't catch the exception thrown by INT_MIN / -1 or INT_MIN * -1,Bruce Momjian2006-06-121-1/+23
* Fix Assert failure when a fastpath function call is attempted inside anTom Lane2006-06-112-6/+24
* Fix bootstrap.c so that database startup process and bgwriter properly releaseTom Lane2006-06-081-1/+24
* Remove "fuzzy comparison" logic in qsort comparison function forTom Lane2006-06-071-8/+6
* Fix copy-and-pasteo in Russian translation: message complaining aboutTom Lane2006-06-031-2/+2
* PostmasterIsAlive test really ought to be in the inner loop for safety.Tom Lane2006-05-301-2/+6
* Move conversion dependency patch to the proper branch, out of 8.1.X,Bruce Momjian2006-05-301-8/+1
* Prevent multiple archivers from starting. Backpatch to 8.1.X.Bruce Momjian2006-05-302-3/+10
* Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane2006-05-213-7/+55
* Change the backend to reject strings containing invalidly-encoded multibyteTom Lane2006-05-2133-764/+1312
* Have autovacuum report its activities to the stat collector.Alvaro Herrera2006-05-194-12/+96
* Fix choose_bitmap_and() so that partial index predicates are considered whenTom Lane2006-05-181-9/+10
* When a bitmap indexscan is using a partial index, it is necessary to includeTom Lane2006-05-181-25/+27
* Fix the sense of the test on DH_check()'s return value. This was preventingTom Lane2006-05-121-2/+2
* Remove unnecessary .seg/.section directives, per Alan Stange.Tom Lane2006-05-111-10/+1
* Fix calculation of plan node extParams to account for the possibility that oneTom Lane2006-05-031-10/+29
* Avoid assuming that statistics for a parent relation reflect the properties ofTom Lane2006-05-022-6/+21
* Remove the restriction originally coded into optimize_minmax_aggregates() thatTom Lane2006-04-282-25/+5
* Fix SELECT INTO and CREATE TABLE AS to create tables in the defaultBruce Momjian2006-04-261-2/+14
* Revise large-object access routines to avoid running with CurrentMemoryContextTom Lane2006-04-262-85/+45
* The 8.1 planner removes WHERE quals from the plan when the quals areTom Lane2006-04-251-10/+32
* Improve our private implementation of cbrt() to give results of theTom Lane2006-04-241-2/+13
* Don't add a shared dependency on the owner of a composite type in pg_class.Alvaro Herrera2006-04-241-2/+8
* Document that errors are not output by log_statement (was they were inBruce Momjian2006-04-181-5/+7
* Fix similar_escape() so that SIMILAR TO works properly for patterns involvingTom Lane2006-04-131-3/+29
* Revert my best_inner_indexscan patch of yesterday, which turns out to haveTom Lane2006-04-091-46/+97
* Fix best_inner_indexscan to actually enforce that an "inner indexscan" useTom Lane2006-04-081-22/+30
* Fix make_restrictinfo_from_bitmapqual() to preserve AND/OR flatness of itsTom Lane2006-04-071-8/+39
* Suppress attempts to report dropped tables to the stats collector from aTom Lane2006-03-301-3/+9
* TablespaceCreateDbspace should function normally even on platforms that do notTom Lane2006-03-291-6/+5
* Disable full_page_writes, because turning it off risks causing crash-recoveryTom Lane2006-03-281-3/+2
* Repair longstanding error in btree xlog replay: XLogReadBuffer should beTom Lane2006-03-281-3/+3
* Comments in IndexBuildHeapScan describe the indexing of recently-deadTom Lane2006-03-241-6/+5
* The call to DNSServiceRegistrationCreate in postmaster.c does incorrectNeil Conway2006-03-181-2/+2
* Fix bug introduced into mergejoin logic by performance improvement patch ofTom Lane2006-03-171-29/+50
* Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd(). This fixes problemTom Lane2006-03-101-1/+7