aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Add URL for:Bruce Momjian2006-10-24
| | | | | * Speed up COUNT(*) > http://archives.postgresql.org/pgsql-hackers/2005-11/msg00943.php
* Rewrite discussion of ORDER BY to emphasize the SQL99 expression caseTom Lane2006-10-24
| | | | instead of the SQL92 output-column-ID case.
* Stamp 8.2beta2.REL8_2_BETA2Tom Lane2006-10-23
|
* Add some real descriptions to the multiargument aggregate functions ratherPeter Eisentraut2006-10-23
| | | | than just showing the incomprehensible formulas.
* Fix broken markup.Tom Lane2006-10-23
|
* Spellchecking and suchPeter Eisentraut2006-10-23
|
* Fix list of environment variables for configure. Remove some variablesPeter Eisentraut2006-10-23
| | | | | that are almost never used. Put documentation-related variables into the documentation chapter.
* Small parser syncMichael Meskes2006-10-23
|
* Remove an unnecessary HOLD_INTERRUPTS/RESUME_INTERRUPTS pair.Tom Lane2006-10-22
| | | | | This was required back when RESUME_INTERRUPTS could actually execute ProcessInterrupts, but that hasn't been true since 2001...
* Code cleanup for pg_buffercache, from Mark Kirkwood.Tom Lane2006-10-22
|
* Various MSVC build fixes from Magnus; also remove stray WindowsTom Lane2006-10-22
| | | | newlines.
* Some desultory copy-editing.Tom Lane2006-10-22
|
* Some marginal editorial improvements and updates in the tutorial.Tom Lane2006-10-21
|
* Translations updatePeter Eisentraut2006-10-21
|
* Further release-note editorialization.Tom Lane2006-10-21
|
* Editorial improvements for recent plpython doc updates.Tom Lane2006-10-21
|
* Update PQserverVersion() to use 8.1.X as an example, rather than 7.4Bruce Momjian2006-10-21
| | | | because the function didn't exist in 7.4.X.
* Update release notes for new pgcrypto additions.Bruce Momjian2006-10-21
| | | | Marko Kreen
* Add URL for async I/O:Bruce Momjian2006-10-21
| | | | > http://archives.postgresql.org/pgsql-hackers/2006-10/msg00820.php
* Rewrite discussion of string constant syntax to bring it into line withTom Lane2006-10-21
| | | | the politically correct view that backslash escapes are deprecated.
* Make index entry more specific.Tom Lane2006-10-21
|
* pgbench: More fix with handling default scaling factor in the defaultTatsuo Ishii2006-10-21
| | | | | | scenarios. With multiple clinets, only the first client got the right scaling factor and this gave a illusion of better performance in case of the scaling factor greater than 1.
* Update release notes to current, and do a pass of editorial corrections.Tom Lane2006-10-20
|
* Minor doc tweak: make a reference to pg_locks into a link.Neil Conway2006-10-20
|
* Fix typo.Alvaro Herrera2006-10-20
|
* Marginal code cleanups in pg_logdir_ls: use ReadDir not readdir,Tom Lane2006-10-20
| | | | and avoid scribbling on its result (might be safe but why risk it)
* Try to fix the AIX getaddrinfo mess in a way that works on all versions.Tom Lane2006-10-19
| | | | Going to wait for buildfarm results before backpatching, this time.
* Clarify note about interaction of log_statement logging with errors.Tom Lane2006-10-19
| | | | | Remove obsolete note about logging of statements generated by plpgsql function execution ... that doesn't happen anymore.
* Marginal improvement in logging: include the function name when loggingTom Lane2006-10-19
| | | | a fastpath function call.
* Rename our substitute qsort to pg_qsort at the link-symbol level (butTom Lane2006-10-19
| | | | | provide a macro so code can still just say qsort). Avoids linker warnings on pickier platforms such as Darwin, and outright failure on MSVC.
* Add externs for optarg/optind where apparently needed. Per Magnus.Tom Lane2006-10-19
|
* Handle missing M_PI the same way we've been doing in the core code,Tom Lane2006-10-19
| | | | instead of inserting an MSVC dependency.
* Further MSVC portability fixes from Magnus.Tom Lane2006-10-19
|
* Remove qsort TODO.detail. All items completed.Bruce Momjian2006-10-19
|
* Done:Bruce Momjian2006-10-19
| | | | | | | | < * Improve port/qsort() to handle sorts with 50% unique and 50% duplicate < value [qsort] < < This involves choosing better pivot points for the quicksort. <
* Fix a couple of places that were assuming debug_query_string couldn'tTom Lane2006-10-19
| | | | be NULL ... seems an unsafe assumption.
* Make sure that debug_query_string contains the original query text,Tom Lane2006-10-19
| | | | | | if available (which it usually should be), during processing of Bind and Execute protocol messages. This improves usefulness of log_min_error_statement logging for extended query protocol.
* Clean up local redeclarations of variables with DLLIMPORT, per reportTom Lane2006-10-19
| | | | from Magnus that MSVC complains about this.
* Fix typo.Neil Conway2006-10-19
|
* Simplify contrib Makefiles by removing unnecessary SRCS macro,Tom Lane2006-10-19
| | | | per Magnus.
* Work around reported problem that AIX's getaddrinfo() doesn't seem to zeroTom Lane2006-10-19
| | | | | | | sin_port in the returned IP address struct when servname is NULL. This has been observed to cause failure to bind the stats collection socket, and could perhaps cause other issues too. Per reports from Brad Nicholson and Chris Browne.
* Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane2006-10-18
| | | | | | that conflict with the OID that we want to use for the new database. This avoids the risk of trying to remove files that maybe we shouldn't remove. Per gripe from Jon Lapham and subsequent discussion of 27-Sep.
* Fix up timetz input so that a date is required only when the specifiedTom Lane2006-10-18
| | | | | | | | timezone actually has a daylight-savings rule. This avoids breaking cases that used to work because they went through the DecodePosixTimezone code path. Per contrib regression failures (mea culpa for not running those yesterday...). Also document the already-applied change to allow GMT offsets up to 14 hours.
* Fix array operator refererence in release notes, per David Wheeler.Bruce Momjian2006-10-18
|
* Fix up some problems in handling of zic-style time zone names in datetimeTom Lane2006-10-17
| | | | | | | | | | | | | | input routines. Remove the former "DecodePosixTimezone" function in favor of letting the zic code handle POSIX-style zone specs (see tzparse()). In particular this means that "PST+3" now means the same as "-03", whereas it used to mean "-11" --- the zone abbreviation is effectively just a noise word in this syntax. Make sure that all named and POSIX-style zone names will be parsed as a single token. Fix long-standing bogosities in printing and input of fractional-hour timezone offsets (since the tzparse() code will accept these, we'd better make 'em work). Also correct an error in the original coding of the zic-zone-name patch: in "timestamp without time zone" input, zone names are supposed to be allowed but ignored, but the coding was such that the zone changed the interpretation anyway.
* Mark 8.2 release as 2006-??, not 2005-??, per observation by DavidBruce Momjian2006-10-17
| | | | Wheeler.
* Attached files fix the link problem in FAQ_DEV.html, remove some partsBruce Momjian2006-10-17
| | | | | | related to website development and change the link to the FAQ_DEV.html. Devrim GUNDUZ
* Fixes for CREATE CONSTRAINT manual page.Bruce Momjian2006-10-17
| | | | Michael Paesold
* Fix unexpected side-effect of changes for case insensitivity of timezone names.Tom Lane2006-10-17
|
* Remove use of whrandom module, which was removed in Python 2.5.Peter Eisentraut2006-10-16
|