aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add:Bruce Momjian2004-11-01
| | | | > * Add a GUC variable to control temporary and TOAST tablespace usage
* Use psql -q option instead of 2>/dev/null during first invocationTom Lane2004-10-31
| | | | | | of psql; this should make it easier to diagnose client-side problems, such as library version mismatch. Also, consistently use -X option to avoid problems from weird .psqlrc settings.
* Invent a new, more thread-safe version of PQrequestCancel, called PQcancel.Tom Lane2004-10-30
| | | | | | Use this new function in psql. Implement query cancellation in psql for Windows. Code by Magnus Hagander, documentation and minor editorialization by Tom Lane.
* I found a corner case in which it is possible for RI_FKey_check's callTom Lane2004-10-30
| | | | | | | | | | | | | | of HeapTupleSatisfiesItself() to trigger a hint-bit update on the tuple: if the row was updated or deleted by a subtransaction of my own transaction that was later rolled back. This cannot occur in pre-8.0 of course, so the hint-bit patch applied a couple weeks ago is OK for existing releases. But for 8.0 it seems we had better fix things so that RI_FKey_check can pass the correct buffer number to HeapTupleSatisfiesItself. Accordingly, add fields to the TriggerData struct to carry the buffer ID(s) for the old and new tuple(s). There are other possible solutions but this one seems cleanest; it will allow other AFTER-trigger functions to safely do tqual.c calls if they want to. Put new fields at end of struct so that there is no API breakage.
* Change COMMIT back to the old behavior of emitting command tag COMMIT,Tom Lane2004-10-30
| | | | | not ROLLBACK, for the case of COMMIT outside a transaction block. Alvaro Herrera
* Translation updatePeter Eisentraut2004-10-30
|
* Rearrange order of pre-commit operations: must close cursors before doingTom Lane2004-10-29
| | | | ON COMMIT actions. Per bug report from Michael Guerin.
* Fix broken example for PREPARE.Tom Lane2004-10-29
|
* No need to set errorMessage length --- already set in goto target.Bruce Momjian2004-10-29
|
* Fix failure to think clearly about encoding conversion errors in COPY.Tom Lane2004-10-29
| | | | | | | | | We can't regurgitate the unconverted string as I first thought, because the elog.c mechanisms will assume the error message data is in the server encoding and attempt a reverse conversion. Eventually it might be worth providing a short-circuit path to support this, but for now the simplest solution is to abandon trying to report back the line contents after a conversion failure. Per bug report from Sil Lee, 27-Oct-2004.
* Set errorMessage length in PQrequestCancel() in all places.Bruce Momjian2004-10-29
|
* Improvements to the CREATE DATABASE reference page's description of theNeil Conway2004-10-29
| | | | TABLESPACE clause.
* Minor improvements to the tablespace documentation.Neil Conway2004-10-29
|
* Add DEBUG1-level logging of checkpoint start and end. Also, reduce theTom Lane2004-10-29
| | | | | | 'recycled log files' and 'removed log files' messages from DEBUG1 to DEBUG2, replacing them with a count of files added/removed/recycled in the checkpoint end message, as per suggestion from Simon Riggs.
* This makes dblink pass its installcheck test on platforms whereTom Lane2004-10-28
| | | | | | | | | snprintf(data, len, %s, NULL) crash. The code was trying to find a connection by name when it already had an unnamed connection and did not have a name to search with. Kris Jurka
* Code cleanup in dirmod.c. Andrew Dunstan, some further mods by moi.Tom Lane2004-10-28
|
* Fix to_number for the case of a trailing S.Tom Lane2004-10-28
| | | | Karel Zak
* Translation updatePeter Eisentraut2004-10-28
|
* Translation updatesPeter Eisentraut2004-10-28
|
* Translation updatesPeter Eisentraut2004-10-28
|
* Use AllocateFile(), FreeFile() and palloc() rather than fopen(), fclose()Neil Conway2004-10-28
| | | | | and malloc() in pgstat.c, respectively. This simplifies error recovery, as well as being more consistent with the rest of the backend.
* On Windows, force a checkpoint just before dropping a database's physicalTom Lane2004-10-28
| | | | | | files and directories. This ensures that the bgwriter will close any open file references it is holding for files therein, which is needed for the rmdir() to succeed. Andrew Dunstan and Tom Lane.
* Have pg_ctl status always output to stdout, even stopped status, not stderr.Bruce Momjian2004-10-27
|
* Fix Cygwin compile for timezone.Bruce Momjian2004-10-27
|
* When displaying a Var that is a reference to a column of an unnamed join,Tom Lane2004-10-27
| | | | | | | try to display it as a reference to the underlying column instead. This is a legitimate substitution (it wouldn't be for a named join) and it fixes some cases where the display would otherwise be ambiguous. Per example from Sim Zacks.
* Canonicalize Win32 path coming in from pg_ctl -D, idea from Magnus.Bruce Momjian2004-10-27
|
* Translation updatePeter Eisentraut2004-10-27
|
* Add a missing dependency: the "install" target requires "all" to haveNeil Conway2004-10-27
| | | | been built before it. Per report from Kris Jurka.
* New translationPeter Eisentraut2004-10-27
|
* Translation updatesPeter Eisentraut2004-10-27
|
* Translation updatePeter Eisentraut2004-10-27
|
* Translation updatesPeter Eisentraut2004-10-27
|
* Translation updatesPeter Eisentraut2004-10-27
|
* Translation updatesPeter Eisentraut2004-10-27
|
* Trivial fix: clarify a comment.Neil Conway2004-10-27
|
* Update German FAQ.Bruce Momjian2004-10-27
| | | | Ian Barwick
* Add reminder to update copyright in sgml file.Bruce Momjian2004-10-26
|
* Document IS DISTINCT FROM in a more obvious place, and add some moreTom Lane2004-10-26
| | | | index entries for IS-foo constructs.
* Add:Bruce Momjian2004-10-26
| | | | | > * Allow TIMESTAMP WITH TIME ZONE to store the original timezone > information, either by name or offset from UTC
* Update Russian FAQ.Bruce Momjian2004-10-26
| | | | Viktor Vislobokov
* Make heap_fetch API more consistent by having the buffer remain pinnedTom Lane2004-10-26
| | | | | | in all cases when keep_buf = true. This allows ANALYZE's inner loop to use heap_release_fetch, which saves multiple buffer lookups for the same page and avoids overestimation of cost by the vacuum cost mechanism.
* In the new dispensation where REINDEX doesn't take exclusive lock onTom Lane2004-10-25
| | | | | the parent table, it's essential that all index accesses take some kind of lock on the index. I had missed vacuumlazy.c :-( ...
* Update copyright information in documentation. Also, add a noteNeil Conway2004-10-25
| | | | to RELEASE_CHANGES so that this is not forgotten in the future.
* Remove three unnecessary casts from a pointer type to char * when callingNeil Conway2004-10-25
| | | | pfree().
* Fix tyop in comment.Neil Conway2004-10-25
|
* Make error message more verbose, in hopes of avoiding misunderstandingsTom Lane2004-10-25
| | | | such as bug #1293.
* Fix some more 'old-style parameter declaration' warnings.Tom Lane2004-10-25
|
* Fix a bunch of 'old-style parameter declaration' warnings induced byTom Lane2004-10-25
| | | | writing 'foo()' rather than 'foo(void)'.
* Modify hash_create() to elog(ERROR) if an error occurs, rather thanNeil Conway2004-10-25
| | | | | | | | returning a NULL pointer (some callers remembered to check the return value, but some did not -- it is safer to just bail out). Also, cleanup pgstat.c to use elog(ERROR) rather than elog(LOG) followed by exit().
* make sure we tag configure.in as beta4 as well ...REL8_0_0BETA4PostgreSQL Daemon2004-10-25
|