aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Translation updatesPeter Eisentraut2004-09-20
|
* Translation updatesPeter Eisentraut2004-09-20
|
* Translation updatesPeter Eisentraut2004-09-20
|
* Now that I look, table 8-1 has some other marginal misstatements in it.Tom Lane2004-09-20
| | | | | If we're going to put brackets around optional precision specs in some entries, we'd better do it in all.
* Minor documentation cleanup and improvement.Neil Conway2004-09-20
|
* Add defenses against plpython functions being declared to take or returnTom Lane2004-09-19
| | | | | pseudotypes. Not sure why I neglected to add these checks at the same time I added them to the other PLs, but it seems I did.
* Fix estimate_num_groups to be able to use expression-index statisticsTom Lane2004-09-18
| | | | when there is an expressional index matching a GROUP BY item.
* Put the brackets in the right places in timestamp entries in table 8-1.Tom Lane2004-09-18
| | | | Spotted by Josh Purinton.
* Move comment at end of line to a separate line so trailing tabs don'tPeter Eisentraut2004-09-18
| | | | become part of the make variable value.
* Fix memory leak in tokenize_file, per report from Vadim Passynkov.Tom Lane2004-09-18
|
* Improve documentation of log rotation options, per Ed L.Tom Lane2004-09-17
|
* Add support for GNU/Hurd and GNU/*BSD. For our purposes, they behave justPeter Eisentraut2004-09-17
| | | | like Linux; we just need to recognize the system types.
* New config.guess and config.subPeter Eisentraut2004-09-17
|
* Allow WIN1250 as server encoding.Peter Eisentraut2004-09-17
|
* Here is a patch bringing oid2name into the 21st century.Tom Lane2004-09-17
| | | | Alvaro Herrera
* Hashed LEFT JOIN would miss outer tuples with no inner match if the joinTom Lane2004-09-17
| | | | | | was large enough to be batched and the tuples fell into a batch where there were no inner tuples at all. Thanks to Xiaoyu Wang for finding a test case that exposed this long-standing bug.
* Now that xmax and cmin are distinct fields again, we should zero xmax whenTom Lane2004-09-17
| | | | | | creating a new tuple. This is just for debugging sanity, though, since nothing should be paying any attention to xmax when the HEAP_XMAX_INVALID bit is set.
* Hyperlink a reference to DROP CAST in the CREATE CAST reference page.Neil Conway2004-09-17
|
* Make discovery of python_configdir architecture independent. SolutionJoe Conway2004-09-16
| | | | from James William Pye.
* Fix oversight: there's no reason for PG_TRY to use sigsetjmp(buf,1)Tom Lane2004-09-16
| | | | | since we don't change the signal mask during normal backend operations. Use sigsetjmp(buf,0) to avoid many unnecessary kernel calls.
* Remove contrib/pg_logger, per recent discussion.Tom Lane2004-09-16
|
* Remove erroneous Assert, per example from Kris Jurka.Tom Lane2004-09-16
|
* Add some marginal tweaks to eliminate memory leakages associated withTom Lane2004-09-16
| | | | | subtransactions. Trivial subxacts (such as a plpgsql exception block containing no database access) now demonstrably leak zero bytes.
* RecentXmin is too recent to use as the cutoff point for accessingTom Lane2004-09-16
| | | | | | | pg_subtrans --- what we need is the oldest xmin of any snapshot in use in the current top transaction. Introduce a new variable TransactionXmin to play this role. Fixes intermittent regression failure reported by Neil Conway.
* Restructure subtransaction handling to reduce resource consumption,Tom Lane2004-09-16
| | | | | | | | | | | | | | | | | as per recent discussions. Invent SubTransactionIds that are managed like CommandIds (ie, counter is reset at start of each top transaction), and use these instead of TransactionIds to keep track of subtransaction status in those modules that need it. This means that a subtransaction does not need an XID unless it actually inserts/modifies rows in the database. Accordingly, don't assign it an XID nor take a lock on the XID until it tries to do that. This saves a lot of overhead for subtransactions that are only used for error recovery (eg plpgsql exceptions). Also, arrange to release a subtransaction's XID lock as soon as the subtransaction exits, in both the commit and abort cases. This avoids holding many unique locks after a long series of subtransactions. The price is some additional overhead in XactLockTableWait, but that seems acceptable. Finally, restructure the state machine in xact.c to have a more orthogonal set of states for subtransactions.
* Minor doc tweak: mention that function names can be optionally schema-Neil Conway2004-09-16
| | | | qualified.
* Fix a read of uninitialized memory in array_out(). Perform some minorNeil Conway2004-09-16
| | | | cosmetic code cleanup at the same time.
* Cosmetic PL/PgSQL fix: declare the second parameter plpgsql_dstring_appendNeil Conway2004-09-14
| | | | as a const char *, so that we don't need to cast away a const in gram.y
* Mark as done:Bruce Momjian2004-09-14
| | | | | | | | | | < * Point-in-time data recovery using backup and write-ahead log, < * Create native Win32 port, http://momjian.postgresql.org/main/writings/pgsql/project/win32.html > * -Point-in-time data recovery using backup and write-ahead log > * -Create native Win32 port 470c470 < o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW > o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW
* New translationPeter Eisentraut2004-09-14
|
* Translation updatePeter Eisentraut2004-09-14
|
* Fix contrib/cube and contrib/seg to compile on Windows.Tom Lane2004-09-14
| | | | Andreas Pflug
* Fix some minor issues with the new Win32 service code for autovacuum,Tom Lane2004-09-14
| | | | and add documentation. Dave Page
* Adjust tsearch2.sql to avoid use of COPY FROM STDIN, so as toTom Lane2004-09-14
| | | | simplify life for the Win32 installer. Per Dave Page.
* Win32 compile fix for misc_utils.Tom Lane2004-09-14
| | | | Claudio Natoli
* Win32 compile fixes for pgbench, pgcrypto, and tsearch.Tom Lane2004-09-14
| | | | Claudio Natoli
* Fix contrib/dbase to compile under Win32. Laurent BallesterTom Lane2004-09-14
|
* Make pltcl work on Win32. Magnus HaganderTom Lane2004-09-14
|
* Fix small memory leak in psql.Neil Conway2004-09-13
|
* Translation updatePeter Eisentraut2004-09-13
|
* Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane2004-09-13
| | | | | | | | | | | | | mode see a fresh snapshot for each command in the function, rather than using the latest interactive command's snapshot. Also, suppress fresh snapshots as well as CommandCounterIncrement inside STABLE and IMMUTABLE functions, instead using the snapshot taken for the most closely nested regular query. (This behavior is only sane for read-only functions, so the patch also enforces that such functions contain only SELECT commands.) As per my proposal of 6-Sep-2004; I note that I floated essentially the same proposal on 19-Jun-2002, but that discussion tailed off without any action. Since 8.0 seems like the right place to be taking possibly nontrivial backwards compatibility hits, let's get it done now.
* Translation updatesPeter Eisentraut2004-09-13
|
* Translation updatesPeter Eisentraut2004-09-13
|
* New translationsPeter Eisentraut2004-09-13
|
* New translationPeter Eisentraut2004-09-13
|
* Translation updatesPeter Eisentraut2004-09-13
|
* Fix two typos in comments.Neil Conway2004-09-13
|
* Re-add brace removal code but comment it out so we know why we removedBruce Momjian2004-09-12
| | | | it and have it in case we need it for some special case.
* Remove code that delete braces around single statements.Bruce Momjian2004-09-12
|
* When LockAcquire fails at the stage of creating a proclock object, beTom Lane2004-09-12
| | | | | sure to clean up the already-created lock object, if it has no other references. Avoids possibly-permanent leak of shared memory.