Re: [PATCHES] improve routine vacuuming docs

2003-12-11 Thread Neil Conway
Robert Treat <[EMAIL PROTECTED]> writes: > Should be "TRUNCATE removes the entire content of > the table immediately, without requiring a subsequent > VACUUM or VACUUM FULL to > reclaim the now-unused disk space." I think the is overkill, but otherwise I've made this change. > Maybe better

[PATCHES] initdb italian translation

2003-12-11 Thread [EMAIL PROTECTED]
This is an initial italian translation for initdb. It still isn't complete. Regards, Fabrizio Mazzoni initdb-it.po Description: Binary data ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

[PATCHES] make "wal_debug" GUC var a boolean

2003-12-11 Thread Neil Conway
The "wal_debug" GUC variable was of type "integer", but it was used in the code effectively as a boolean: the code only tested whether it was zero or non-zero. This patch makes it a proper boolean. -Neil Index: doc/src/sgml/runtime.sgml =

Re: [PATCHES] psql-current italian translation updates

2003-12-11 Thread Peter Eisentraut
[EMAIL PROTECTED] wrote: > Updated italian po file for psql-current. This work is pretty much wasted at this time, because we're about one year away from making a new release, and who knows what will be changed until then. I recommend that you concentrate on finishing the translations in the 7

Re: [PATCHES] initdb italian translation

2003-12-11 Thread Peter Eisentraut
[EMAIL PROTECTED] wrote: > his is an initial italian translation for initdb. It still isn't > complete. Installed. ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html

Re: [PATCHES] fix vpath doc builds

2003-12-11 Thread Peter Eisentraut
Neil Conway wrote: > At present, trying to build the documentation from outside the source > tree (i.e. a "vpath build") fails. This patch fixes that. Two changes > were required: Patch installed. ---(end of broadcast)--- TIP 8: explain analyze is

Re: [PATCHES] YA Doc patch

2003-12-11 Thread Peter Eisentraut
David Fetter wrote: > I hope this one actually does what Tom said. It appears to work :) Probably, but that does not seem to be the right place in the documentation for this. The location you propose explains EXTRACT, and we should leave it at that. ---(end of broadca

Re: [PATCHES] improvements to SGML

2003-12-11 Thread Peter Eisentraut
Neil Conway wrote: > This patch makes some editorial improvements to the bug reporting > guidelines and the LOCK reference page. Looks good, but did you have a specific reason to prefer LOCK TABLE over plain LOCK? ---(end of broadcast)--- TIP 6: H

Re: [PATCHES] improve routine vacuuming docs

2003-12-11 Thread Peter Eisentraut
Neil Conway wrote: > This patch makes some improvements and adds some details to the > documentation on routine database maintenance activities. Any > comments on the new text would be appreciated. It's kind of hard to see what you have really changed. Can you provide a summary? > I also correc

Re: [PATCHES] make "wal_debug" GUC var a boolean

2003-12-11 Thread Peter Eisentraut
Neil Conway wrote: > The "wal_debug" GUC variable was of type "integer", but it was used > in the code effectively as a boolean: the code only tested whether it > was zero or non-zero. This patch makes it a proper boolean. I agree with this, but would it be possible to fold it into the normal deb