diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-01-05 16:26:49 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-01-05 16:26:49 +0000 |
| commit | e7893db5cfc85f9e996841f833b29348444150cd (patch) | |
| tree | 822b1bb8f0e1d16dfd99b8e119521d596061ff41 /doc/TODO | |
| parent | 1b736817d0761db12d370ab7a366eb3735eff571 (diff) | |
| download | postgresql-e7893db5cfc85f9e996841f833b29348444150cd.tar.gz | |
Update wording:
< the table. Another option is to avoid transaction logging entirely
< and truncate or drop the table on crash recovery. These should be
< implemented using ALTER TABLE, e.g. ALTER TABLE PERSISTENCE [ DROP |
< TRUNCATE | STABLE | DEFAULT ]. [wallog]
> the table. This would affect COPY, and perhaps INSERT/UPDATE too.
> Another option is to avoid transaction logging entirely and truncate
> or drop the table on crash recovery. These should be implemented
> using ALTER TABLE, e.g. ALTER TABLE PERSISTENCE [ DROP | TRUNCATE |
> STABLE | DEFAULT ]. [wallog]
Diffstat (limited to 'doc/TODO')
| -rw-r--r-- | doc/TODO | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Thu Jan 5 11:23:42 EST 2006 +Last updated: Thu Jan 5 11:26:44 EST 2006 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -1019,10 +1019,11 @@ Write-Ahead Log Allow tables to bypass WAL writes and just fsync() dirty pages on commit. To do this, only a single writer can modify the table, and writes must happen only on new pages. Readers can continue accessing - the table. Another option is to avoid transaction logging entirely - and truncate or drop the table on crash recovery. These should be - implemented using ALTER TABLE, e.g. ALTER TABLE PERSISTENCE [ DROP | - TRUNCATE | STABLE | DEFAULT ]. [wallog] + the table. This would affect COPY, and perhaps INSERT/UPDATE too. + Another option is to avoid transaction logging entirely and truncate + or drop the table on crash recovery. These should be implemented + using ALTER TABLE, e.g. ALTER TABLE PERSISTENCE [ DROP | TRUNCATE | + STABLE | DEFAULT ]. [wallog] Optimizer / Executor |
