aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* New URL.Bruce Momjian2003-02-18
|
* New URL for FAQ.Bruce Momjian2003-02-18
|
* Add:Bruce Momjian2003-02-18
| | | | > * Allow WAL information to recover corrupted pg_controldata
* Update German FAQ, from Ian Barwick.Bruce Momjian2003-02-18
|
* *** empty log message ***Bruce Momjian2003-02-18
|
* Update changes from Ian Barwick.Bruce Momjian2003-02-18
|
* Add:Bruce Momjian2003-02-18
| | | | > * Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUE
* Update README.Bruce Momjian2003-02-18
|
* Async_NotifyHandler must save and restore ImmediateInterruptOK. FixesTom Lane2003-02-18
| | | | | | known problem with failure to respond to 'pg_ctl stop -m fast', and probable problems if SIGINT or SIGTERM arrives while processing a SIGUSR2 interrupt that arrived while waiting for a new client query.
* Add:Bruce Momjian2003-02-18
| | | | > * Add a script to ask system configuration questions and tune postgresql.conf
* Rename 'holder' references to 'proclock' for PROCLOCK references, forBruce Momjian2003-02-18
| | | | consistency.
* Add:Bruce Momjian2003-02-17
| | | | > * Allow CIDR format to be used in pg_hba.conf
* Update marks:Bruce Momjian2003-02-17
| | | | | | | | | | | < o Allow CLUSTER to cluster all tables (Alvaro Herrera) > o -Allow CLUSTER to cluster all tables (Alvaro Herrera) 243c243 < * Allow pg_dump to dump a specific schema (Neil Conway) > * -Allow pg_dump to dump a specific schema (Neil Conway) 398c398 < * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom) > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
* Remove IN/EXISTS TODO.detail item.Bruce Momjian2003-02-17
|
* Mark as done:Bruce Momjian2003-02-17
| | | | | | | | | | | | > o -Add ALTER TABLE tab SET WITHOUT OIDS (Rod) > o -Allow CLUSTER to cluster all tables (Alvaro Herrera) > * -Allow pg_dump to dump a specific schema (Neil Conway) > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom) > * Rod is Rod Taylor <pg@rbt.ca)>
* Update:Bruce Momjian2003-02-17
| | | | | < * -Make a transaction-safe TRUNCATE > * -Make a transaction-safe TRUNCATE (Rod)
* Done:Bruce Momjian2003-02-17
| | | | > * -Make a transaction-safe TRUNCATE
* Added Informix "database" command.Michael Meskes2003-02-17
|
* Back off previous patch to skip projection step in scan plan nodes,Tom Lane2003-02-16
| | | | | | | in the case where the node immediately above the scan is a Hash, Sort, or Material node. In these cases it's better to do the projection so that we don't store unneeded columns in the hash/sort/materialize table. Per discussion a few days ago with Anagh Lal.
* COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane2003-02-16
| | | | | that turn into CASE expressions. They evaluate their arguments at most once. Patch by Kris Jurka, review and (very light) editorializing by me.
* Update wording:Bruce Momjian2003-02-16
| | | | | < * Disallow DROP COLUMN on a column that is part of a multi-column index > * Require DROP COLUMN CASCADE for a column that is part of a multi-column index
* Marginal tweaks to make sure that roundoff error won't cause us to makeTom Lane2003-02-15
| | | | a bad choice between sorted and hashed aggregation.
* Teach planner how to propagate pathkeys from sub-SELECTs in FROM up toTom Lane2003-02-15
| | | | | | | | | the outer query. (The implementation is a bit klugy, but it would take nontrivial restructuring to make it nicer, which this is probably not worth.) This avoids unnecessary sort steps in examples like SELECT foo,count(*) FROM (SELECT ... ORDER BY foo,bar) sub GROUP BY foo which means there is now a reasonable technique for controlling the order of inputs to custom aggregates, even in the grouping case.
* Add:Bruce Momjian2003-02-15
| | | | > * Disallow DROP COLUMN on a column that is part of a multi-column index
* Propogate pg_ctl -D to the postmaster as a -D flag for identification byBruce Momjian2003-02-14
| | | | ps for multiple postmasters, for Kevin Brown.
* Fix SPI result logic for case where there are multiple statements of theTom Lane2003-02-14
| | | | same type in a rule. Per bug report from Pavel Hanak.
* Make pg_dump/restore safer for autocommit=off in postgresql.conf.Bruce Momjian2003-02-14
|
* Add:Bruce Momjian2003-02-14
| | | | > * Allow incremental backups
* In Informix mode ecpg should still be able to parse preprocessor directives.Michael Meskes2003-02-14
|
* Add:Bruce Momjian2003-02-14
| | | | > * Add schema option to createlang
* Allow PAM to work on MAC OS X, report from Aaron Hillegass.Bruce Momjian2003-02-14
| | | | Change was actually made in a previous commit.
* Update FAQ's in head and 7.3.X.Bruce Momjian2003-02-14
|
* Update to 7.3.2 as newest release.Bruce Momjian2003-02-14
|
* *** empty log message ***Bruce Momjian2003-02-14
|
* Update URL's.Bruce Momjian2003-02-14
|
* - Synced parser and keyword file.Michael Meskes2003-02-14
| | | | - More work on Informix compatibility.
* Add:Bruce Momjian2003-02-14
| | | | > * Cache last known per-tuple offsets to speed long tuple access
* Update FAQ.Bruce Momjian2003-02-14
|
* Fix broken markup I just introduced.Bruce Momjian2003-02-14
|
* Properly document location of pg_service.conf.sample.Bruce Momjian2003-02-14
|
* Fix some of the breakage from the IPV6 patch.Tom Lane2003-02-14
|
* Remove bogus manipulation of SIGPIPE; the backend already runs withTom Lane2003-02-14
| | | | SIGPIPE disabled, and does not need to waste two syscalls per I/O on it.
* Repair incorrect indexing for atttypmod, per Brad McLean.Tom Lane2003-02-13
|
* Result of lo_read() is int, not size_t. Per Oleg Drokin.Tom Lane2003-02-13
|
* Parser was dropping foreign-key constraints on the floor if present inTom Lane2003-02-13
| | | | an ALTER TABLE ADD COLUMN command. Per bug #896.
* Repair rule permissions-checking bug reported by Tim Burgess 10-Feb-02:Tom Lane2003-02-13
| | | | | the table(s) modified by the original query would get checked for the type of write permission needed by a rule query.
* Arrange to give error when a SetOp member statement refers to a variableTom Lane2003-02-13
| | | | | | | | of the containing query (which really can only happen in a rule context). Per example from Brandon Craig Rhodes. Also, make the error message more specific for the similar case with sub-select in FROM. The revised coding should be easier to adapt to SQL99's LATERAL(), when we get around to supporting that.
* Just intermediate results for backup reasons.Michael Meskes2003-02-13
|
* transformExpr() was missing some cases it ought to allow; per reportTom Lane2003-02-13
| | | | | | | from Greg Stark. Also, twiddle the FuncCall case to not scribble on the input structure, which was the proximate cause of the problem. Someday we ought to fix things so that transformExpr() isn't called on already-transformed trees ...
* Suppress gcc warning.Tom Lane2003-02-13
|