Re: [DOCS] [PATCHES] Contrib docs v1

2007-11-11 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> What is the point of such a distinction? > If the contrib value is the source code itself then it seems a README is > more appropriate as people are not going to install the contrib module > itself --- they ar

Re: [DOCS] Avoiding upgrade backlash

2007-11-12 Thread Tom Lane
is encouragement of people trying to undo that change. regards, tom lane ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster

Re: [DOCS] [pgsql-advocacy] Avoiding upgrade backlash

2007-11-13 Thread Tom Lane
casts. Please provide a concrete example. > Should I be discussing this on a different list? If you are looking for code changes, neither docs nor advocacy are suitable forums. regards, tom lane ---(end of broadcast)--- TIP 4

Re: [DOCS] [pgsql-advocacy] Avoiding upgrade backlash

2007-11-13 Thread Tom Lane
w) but || not so much: regression=# select 42 || 'foo'; ERROR: operator is not unique: integer || unknown LINE 1: select 42 || 'foo'; ^ HINT: Could not choose a best candidate operator. You might need to add explicit type casts.

Re: [DOCS] Placement of contrib modules in SGML documentation

2007-11-13 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> I think there's a case for putting these pages under Part V Server >> Programming (though a few are not in fact server-side code), or under >> Part VI Reference (ignoring the fact that most of the text

[DOCS] Obsolete references to GBorg in documentation

2007-11-13 Thread Tom Lane
ks they're not of so much use anymore. Thoughts? regards, tom lane ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [DOCS] Obsolete references to GBorg in documentation

2007-11-13 Thread Tom Lane
"Joshua D. Drake" <[EMAIL PROTECTED]> writes: > Tom Lane <[EMAIL PROTECTED]> wrote: >> Now that gborg.postgresql.org is officially dead, seems like it'd be a >> good idea to update all the references to it that are in the FAQ. >> >> There are

Re: [DOCS] Normalized Ranking example incorrect in text search

2007-11-14 Thread Tom Lane
ormalization*/) AS rank Why is that correct (or more correct than other ways)? > - Can we say what the differences are between the two ranking functions? > Why do we have two? We already say that: the _cd function doesn't work without positional info in the input tsvector.

Re: [DOCS] Normalized Ranking example incorrect in text search

2007-11-14 Thread Tom Lane
second example would be SELECT title, ts_rank_cd(textsearch, query, 32 /* rank/(rank+1) */) AS rank FROM apod, to_tsquery('neutrino|(dark & matter)') query WHERE query @@ textsearch ORDER BY rank DESC LIMIT 10; with no change in the example output. re

Re: [DOCS] [pgsql-advocacy] Avoiding upgrade backlash

2007-11-16 Thread Tom Lane
n behavior, if you fall foul of it. regards, tom lane ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org

Re: [DOCS] [pgsql-advocacy] Avoiding upgrade backlash

2007-11-17 Thread Tom Lane
ajor problem; and merely asserting that it is one isn't going to change my mind. Can you point to something like a major application that will be broken and can't easily be fixed? regards, tom lane ---(end of broadcast)-

Re: [DOCS] [BUGS] BUG #3767: tsearch2 index creation fatal crash

2007-11-20 Thread Tom Lane
d practice: both sides of the match should usually get normalized before comparison, and these examples don't do that. I'm not sure that putting in to_tsvector calls there would be an improvement, though, since at that point we haven't introduced to_tsvector. Thoughts anyone?

Re: [DOCS] [BUGS] BUG #3767: tsearch2 index creation fatal crash

2007-11-20 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> I'm not sure that putting in to_tsvector calls there would be an >> improvement, though, since at that point we haven't introduced >> to_tsvector. >> >> Thoughts anyone? > Yep, I

Re: [DOCS] [BUGS] BUG #3767: tsearch2 index creation fatal crash

2007-11-20 Thread Tom Lane
s a bit better I think: http://developer.postgresql.org/pgdocs/postgres/textsearch-intro.html#TEXTSEARCH-MATCHING So the first thing is to go bug the www team about updating the online 8.3beta docs, which I shall do forthwith. regards, tom lane

Re: [DOCS] Two fixes for plpgsql.sgml

2007-11-28 Thread Tom Lane
RNS SETOF sometype you can't just say, eg, RETURNS SET Your new wording would lead the reader to the assumption that he can just declare a function as returning "set". Please revert the change. regards, tom lane ---

Re: [DOCS] Partition: use triggers instead of rules

2007-11-28 Thread Tom Lane
eem like a good idea. regards, tom lane ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

Re: [DOCS] Partition: use triggers instead of rules

2007-11-28 Thread Tom Lane
David Fetter <[EMAIL PROTECTED]> writes: > On Wed, Nov 28, 2007 at 03:53:04PM -0500, Tom Lane wrote: >> Entirely removing the example of how to do it with rules doesn't >> seem like a good idea. > It does to me. I haven't found a case yet where rules worked ev

Re: [PATCHES] [DOCS] Partition: use triggers instead of rules

2007-11-28 Thread Tom Lane
David Fetter <[EMAIL PROTECTED]> writes: > On Wed, Nov 28, 2007 at 09:58:26PM -0500, Jonah H. Harris wrote: >> On Nov 28, 2007 3:53 PM, Tom Lane <[EMAIL PROTECTED]> wrote: >>> Entirely removing the example of how to do it with rules doesn't >>> seem lik

Re: [PATCHES] [DOCS] Partition: use triggers instead of rules

2007-11-29 Thread Tom Lane
ce per row. Also, if you implement the trigger with an EXECUTE (forcing a planning cycle) intead of hard-coded commands, the speed advantage becomes even more dubious. regards, tom lane ---(end of broadcast)--- TIP 7: You can he

Re: [PATCHES] [DOCS] Partition: use triggers instead of rules

2007-11-29 Thread Tom Lane
"Joshua D. Drake" <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> A trigger >> will probably beat a rule for inserts/updates involving a small number >> of rows. > Which is exactly what partitioning is doing. Nonsense. Well, maybe *you* never do that

Re: [PATCHES] [DOCS] Partition: use triggers instead of rules

2007-12-02 Thread Tom Lane
titioned tables where rules are being employed, >> the COPY operation will not be so straightforward. > Does my latest patch attached address this well enough? Applied with revisions and extensions. (I take it you hadn't actually tested the example :-() re

Re: [DOCS] About contrib modules

2007-12-02 Thread Tom Lane
Albert Cervera i Areny <[EMAIL PROTECTED]> writes: > Attached, the dict_int and dict_xsyn SGML docs. Applied, thanks. regards, tom lane ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster

Re: [DOCS] About contrib modules

2007-12-02 Thread Tom Lane
on the contrib docs? I'm interested in making an editorial pass over them in the next day or two, but I don't want to create merge conflicts for you if you are about to do more work. regards, tom lane ---(end of broadcast)---

[DOCS] Uniform policy for author credits in contrib module documentation?

2007-12-05 Thread Tom Lane
all the contrib modules. Comments? regards, tom lane ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [DOCS] release notes.. added stefan

2007-12-05 Thread Tom Lane
actice is that autocompletion fixes don't make the release notes at all. It might be worth reminding folks that the release notes do not exist for the purpose of mentioning contributors. regards, tom lane ---(end of broadcast)---

Re: [DOCS] release notes.. added stefan

2007-12-05 Thread Tom Lane
"Joshua D. Drake" <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> It might be worth reminding folks that the release notes do not >> exist for the purpose of mentioning contributors. > Then why do we mention them at all in the release notes? You've got th

Re: [DOCS] [HACKERS] Uniform policy for author credits in contrib module documentation?

2007-12-05 Thread Tom Lane
ction to listing people on the contributors page on the strength of their work on contrib modules. But that seems orthogonal to the question of what should be in the SGML docs ... regards, tom lane ---(end of broadcast)--- TIP 5: don&

Re: [DOCS] lastval() not included in table

2007-12-06 Thread Tom Lane
Jeff Davis <[EMAIL PROTECTED]> writes: > The lastval() function appears to be missing from table 9-38. Fixed in CVS HEAD --- thanks for reporting it. regards, tom lane ---(end of broadcast)--- TIP 4: Have you sea

Re: [DOCS] "distributed checkpoint"

2007-12-06 Thread Tom Lane
s that are wrong for this purpose. I spent a bit of time with a thesaurus but didn't come up with anything that seemed le mot juste. Best I could do was "spread checkpoint" or "time-extended checkpoint". Anybody have a better idea?

Re: [DOCS] [HACKERS] Uniform policy for author credits in contrib module documentation?

2007-12-06 Thread Tom Lane
respond especially fast. If the community-at-large can't handle a bug, we certainly have enough institutional memory to try to contact the original author, even if that address isn't in the SGML docs. regards, tom lane ---(end of broa

Re: [DOCS] Plug in docs

2007-12-16 Thread Tom Lane
you're mistaken. (Again, it's not so much the hook itself that's the problem, as all the stuff that the hooked-in function needs to know about.) regards, tom lane ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster

[DOCS] SGML docs can't be built as .PDF ...

2007-12-27 Thread Tom Lane
#x27;t know the DSSSL stuff well enough to know where to look. Anyone want to tackle it? (A workaround might be to suppress the list-of-tables in PDF output, but I dunno how to do that either.) regards, tom lane ---(end of broadcast)

Re: [DOCS] SGML docs and pdf single-quotes

2007-12-30 Thread Tom Lane
#x27; is something up with which I will not put. > On the other hand, maybe this conversion of ' to > &apod; should be built into the xslt processing (to leave > the sgml more readable)? That would be tolerable. regards, tom lane --

Re: [DOCS] Partitioning documentation example

2008-01-04 Thread Tom Lane
f EXECUTE here; the performance implications are bad. regards, tom lane ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org

Re: [DOCS] Partitioning documentation example

2008-01-05 Thread Tom Lane
x27;t represent the check constraints that way (at least not if you want the planner to do constraint exclusion with them) and I don't think it's "less error-prone" to have a different representation in the trigger than you have in the constraints. regards,

Re: [DOCS] 'make draft' and HTML.index

2008-01-08 Thread Tom Lane
t;make clean all" than to try to use the existing state. I have not looked into why, but certainly this isn't very satisfactory. regards, tom lane ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [DOCS] Full Text Search examples patch

2008-01-11 Thread Tom Lane
tsvector column.) Huh? These are just examples, they are not supposed to refer to any specific real table, much less one that comes standard with Postgres. regards, tom lane ---(end of broadcast)--- TIP 7: You can he

Re: [DOCS] Documentation bug in 8.3?

2008-01-12 Thread Tom Lane
SELECT 'a:1 a:1'::tsvector; tsvector -- 'a':1 (1 row) regression=# SELECT 'a:1,2,1'::tsvector; tsvector -- 'a':1,2 (1 row) regards, tom lane ---(end of broadcast)--- TIP 9

Re: [DOCS] bgwriter_lru_multiplier blurbs inconsistent

2008-01-20 Thread Tom Lane
msgid to be wrong, exactly; but if you have a proposal for better wording, I'm all ears. regards, tom lane ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

Re: [DOCS] [HACKERS] bgwriter_lru_multiplier blurbs inconsistent

2008-01-20 Thread Tom Lane
han bgwriter_lru_maxpages buffers will be written per round. regards, tom lane ---(end of broadcast)--- TIP 5: don't forget to increase your free space map settings

Re: [DOCS] [HACKERS] bgwriter_lru_multiplier blurbs inconsistent

2008-01-20 Thread Tom Lane
Greg Smith <[EMAIL PROTECTED]> writes: > On Sun, 20 Jan 2008, Tom Lane wrote: >> I think the main problem is the qualifying clause up front in a place >> of prominence. Here's a V3 try > That one looks good to me. These are small details but better to get it >

Re: [DOCS] PgAdmin instead of PgAccess

2008-01-22 Thread Tom Lane
"Erik" <[EMAIL PROTECTED]> writes: > Can these occurrences of 'PgAccess' be replaced by 'PgAdmin'? Done. I notice that some of the non-English FAQ translations still mention PgAccess, but I'll leave it to Bruce to worry about those ..

Re: [DOCS] Magic Blocks

2008-01-23 Thread Tom Lane
iles in OBJS". Are we really in the business of teaching C programmers the difference between object files and shared libraries? regards, tom lane ---(end of broadcast)--- TIP 4: Have you searched our l

Re: [DOCS] Magic Blocks

2008-01-24 Thread Tom Lane
s worth a paragraph. But we have only *one* report. Furthermore, there is no reason to think that the symptoms are consistent across platforms or PG versions, so I don't even know what the paragraph should say. regards, tom lane ---(end of broa

Re: [DOCS] Supported platforms list

2008-01-30 Thread Tom Lane
e should remove the section, since it gives some indication of which other platforms have been known to work in the past (and likely will still work, despite the lack of an active buildfarm member). regards, tom lane ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [DOCS] Lack of docs for libpq C Library

2008-01-31 Thread Tom Lane
ntation. PQsetClientEncoding seems to be documented in the wrong place. As for the expbuffer stuff, that is intentionally not considered part of libpq's exported API. If someone uses it, they get to keep both parts when it breaks. regards, tom lane --

Re: [DOCS] Lack of docs for libpq C Library

2008-01-31 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> PQinitSSL *is* documented, though looking at the para immediately raises >> the question what the heck we are doing pointing to a random hp.com page >> for SSL documentation. > I added that for 8.3

Re: [DOCS] Supported platforms list

2008-01-31 Thread Tom Lane
a few other platforms that are similarly used by other key developers --- I don't see any indication that Bruce is running a buildfarm member on whichever-BSD-he-uses, for instance. regards, tom lane ---(end of broadcast)--

Re: [DOCS] Lack of docs for libpq C Library

2008-01-31 Thread Tom Lane
; referring to. I don't know what HP has to do with it. Yeah, I was thinking a simple pointer to www.openssl.org would be more appropriate. We're not here to substitute for somebody doing their own Google search ... regards, tom lane ---(

Re: [DOCS] Supported platforms list

2008-01-31 Thread Tom Lane
I've replaced the section with the attached text. regards, tom lane Supported Platforms A platform (that is, a CPU architecture and operating system combination) is considered supported by the PostgreSQL development community if the code contains

Re: [DOCS] Lack of docs for libpq C Library

2008-01-31 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> The main problem with using the link as it stands is that it is *highly* >> unlikely that it will remain valid for the lifespan of the PG 8.3 >> documentation (let alone subsequent versions). I've

Re: [DOCS] Lack of docs for libpq C Library

2008-01-31 Thread Tom Lane
on), and if there is any question about the legality then that's just frosting on the cake. regards, tom lane ---(end of broadcast)--- TIP 5: don't forget to increase your free space map settings

Re: [DOCS] [HACKERS] Wrong query examples in docs

2008-02-02 Thread Tom Lane
"Gurjeet Singh" <[EMAIL PROTECTED]> writes: > http://www.postgresql.org/docs/8.2/interactive/indexes-opclass.html > The examples given at the end of this page do not work in 8.2.4. They work fine for me ... regards, tom lane --

Re: [DOCS] Partitioning documentation example

2008-02-05 Thread Tom Lane
Decibel! <[EMAIL PROTECTED]> writes: > On Fri, Jan 04, 2008 at 12:25:59PM -0500, Tom Lane wrote: >> That won't actually work. > I think it's still worthy as an example. I think what we have here is a failure to communicate. How are you going to do performance measur

Re: [DOCS] Re: [BUGS] BUG #3965: UNIQUE constraint fails on long column values

2008-03-05 Thread Tom Lane
e able to say anything very specific. Another problem is where would you put the information? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://mail.postgresql.org/mj/mj_wwwusr?domain=postgresql.org&extra=pgsql-docs

Re: [DOCS] FAQ on Embedding Postgres

2008-03-05 Thread Tom Lane
hing on that list would be mysql. If we need a FAQ entry on this at all, I'd stop after David's first two sentences. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://mail.postgresql.org/mj/mj_wwwusr?domain=postgresql.org&extra=pgsql-docs

Re: [DOCS] FAQ on Embedding Postgres

2008-03-05 Thread Tom Lane
David Fetter <[EMAIL PROTECTED]> writes: > On Wed, Mar 05, 2008 at 12:35:53PM -0500, Tom Lane wrote: >> If we need a FAQ entry on this at all, I'd stop after David's first >> two sentences. > Stopping there seems like a very bad idea from a public relation

Re: [DOCS] FAQ on Embedding Postgres

2008-03-05 Thread Tom Lane
cked into. Better not to go there in the first place. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://mail.postgresql.org/mj/mj_wwwusr?domain=postgresql.org&extra=pgsql-docs

Re: [DOCS] order of entries in admin docs

2008-03-11 Thread Tom Lane
o control who-can-connect-where than setting up fancy combinations of user and database entries in pg_hba.conf. AFAIR there is no mention of this alternative in Chapter 21, but it seems like there ought to be. With your proposed reorganization, that would become a forward reference; is that OK?

Re: [DOCS] pg_total_relation_size() and CHECKPOINT

2008-03-13 Thread Tom Lane
its *contents* might not be up to date, but that shouldn't affect pg_total_relation_size. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] pg_total_relation_size() and CHECKPOINT

2008-03-14 Thread Tom Lane
t I'd expect. (The exact value could vary across platforms, of course.) You said you were using the MinGW build --- maybe MinGW's version of stat(2) isn't trustworthy? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To

Re: [DOCS] [HACKERS] [SQL] pl/PgSQL, variable names in NEW

2008-04-10 Thread Tom Lane
w if they go that way. Possibly the text should be reworded, with the mention of DBD::PgSPI put somewhere else or stuck into a or something. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://w

Re: [DOCS] [HACKERS] [SQL] pl/PgSQL, variable names in NEW

2008-04-10 Thread Tom Lane
+1 for just dropping the mention. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] Adding a ref file

2008-04-18 Thread Tom Lane
Simon Riggs <[EMAIL PROTECTED]> writes: > I'm trying to add a new ref/.sgml file, but I can't see which file needs > to change to allow that to be fully referenced. Example: $ grep psqlRef *sgml ref/*sgml reference.sgml: &psqlRef; ref/allfiles.sgml: $

Re: [DOCS] .backup files not needed?

2008-05-09 Thread Tom Lane
cond part of the filename can ordinarily be ignored. I don't know why neither he nor you managed to parse the sentence correctly. Feel free to propose a rewording, but removing information doesn't sound like a solution. regards, tom lane -- Sent via

Re: [DOCS] wal_sync_method

2008-05-17 Thread Tom Lane
"Jaime Casanova" <[EMAIL PROTECTED]> writes: > But in my freshly 8.3.1 instalation on win xp, the default is > "fsync"... is a *bug* in the docs :) More like a bug in the code. Does it let you set the value to open_datasync? regards, t

[DOCS] "Release date" for aborted releases?

2008-06-07 Thread Tom Lane
I am wondering whether to leave the release note pages for 8.3.2, 8.2.8, etc saying "Release date: 2008-06-09", or to change them to something like "Never released". Thoughts? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@pos

Re: [DOCS] "Release date" for aborted releases?

2008-06-07 Thread Tom Lane
Alvaro Herrera <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> I am wondering whether to leave the release note pages for 8.3.2, 8.2.8, >> etc saying "Release date: 2008-06-09", or to change them to something >> like "Never released". Thoughts?

Re: [DOCS] Unable to build 8.3.3 pdf

2008-06-09 Thread Tom Lane
! TeX capacity exceeded, sorry [hash size=6]. ... Here is how much of TeX's memory you used: ... 6 multiletter control sequences out of 1+5 regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your

Re: [DOCS] xmlagg documentation

2008-06-16 Thread Tom Lane
we > should put this with the aggregate functions or the XML functions, or both, > in some way. Any ideas? It doesn't seem to fit with the other aggregate functions, so I think I'd vote for documenting it with the XML functions. regards, tom lane -- Sen

Re: [DOCS] "Release date" for aborted releases?

2008-06-21 Thread Tom Lane
Robert Treat <[EMAIL PROTECTED]> writes: > On Saturday 07 June 2008 13:02:57 Tom Lane wrote: >> I am wondering whether to leave the release note pages for 8.3.2, 8.2.8, >> etc saying "Release date: 2008-06-09", or to change them to something >> like "Nev

Re: [DOCS] triggers on views?

2008-07-15 Thread Tom Lane
s fired > on INSERT on a view can do the same as a rule". This was discussed last month: http://archives.postgresql.org/pgsql-general/2008-06/msg00669.php regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make cha

Re: [DOCS] [ADMIN] shared_buffers and shmmax

2008-07-22 Thread Tom Lane
gree it's not entirely obvious that what it means is "multiply your setting in KB/MB by 8400/8192". Anybody have an idea how to clarify things? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] Doc patch for truncate.sgml

2008-08-28 Thread Tom Lane
nalyze stats will result in invalidating any cached plans. So the system should be capable of auto-tuning its plans to changes in table size ... not instantaneously of course, but then you can't fill a big table instantaneously either. regards, tom lane -- Sent via pgsql

Re: [DOCS] Probably some fixes in syntax.sgml

2008-11-16 Thread Tom Lane
be written in > > probably must be: > ... > > identifier > length > > > The system uses no more than NAMEDATALEN-1 > bytes of an identifier; longer names can be written in > ... > What you think? AFAICS it's fine as-is.

Re: [DOCS] Key word table update for SQL:2008

2008-11-26 Thread Tom Lane
ns. It might look a bit overloaded then. > Comments? Perhaps the most useful thing would be to keep SQL-92 and latest, so as to show the "full range" in what's been reserved or not in different spec revisions. regards, tom lane -- Sent via

Re: [DOCS] contact details in contrib module documentation

2008-12-03 Thread Tom Lane
r that. Are other modules similarly affected? > We don't have names in any of the other chapters, so perhaps we should > remove all the names? This was discussed before and got some push-back: http://archives.postgresql.org/pgsql-docs/2007-12/msg00012.php re

Re: [DOCS] [ADMIN] shared_buffers and shmmax

2008-12-15 Thread Tom Lane
it would suggest we are > talking about objects and not bytes. I'm with Alvaro: neither of those changes were improvements. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] "managing kernel resources" and platform-specific notes

2008-12-16 Thread Tom Lane
ries, while chapter 17 deals with system configuration issues. These should be kept separate, because in the common case of using a prepackaged build, chapter 15 is of no interest but 17 still is. It's quite likely that some of the stuff extracted from the old platform FAQs really belongs in 17.

Re: [DOCS] [ADMIN] shared_buffers and shmmax

2008-12-16 Thread Tom Lane
(1800 + 270 * max_locks_per_transaction) * (max_connections + autovacuum_max_workers) regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] [ADMIN] shared_buffers and shmmax

2008-12-16 Thread Tom Lane
Bruce Momjian writes: > Tom Lane wrote: >> If you're going to give a formula, why not just give a formula, eg > You mean like this: > http://momjian.us/tmp/pgsql/kernel-resources.html Yeah, more or less. A couple thoughts now that I see it worked out: * Combi

Re: [DOCS] [ADMIN] shared_buffers and shmmax

2008-12-17 Thread Tom Lane
Bruce Momjian writes: > Tom Lane wrote: >> * If we do it like this then the left-hand column is really redundant, >> not to say wrong because the right-hand formulas depend on more than >> the single variable mentioned. How about something like >> >> Table 17-2

Re: [DOCS] [pgsql-www] the sad state of our FAQs

2009-03-07 Thread Tom Lane
t sense that we simply stopped updating back branches' FAQs (which hardly seems ideal). So losing it doesn't seem like a showstopper objection to me. Still, it's something that might be nice to preserve if we can. regards, tom lane -- Sent via pgsql-docs ma

Re: [DOCS] [pgsql-www] the sad state of our FAQs

2009-03-07 Thread Tom Lane
king point would be about how long to preserve FAQ entries that are no longer relevant to the current release. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] wal shipping/pg_standby docs patch

2009-03-25 Thread Tom Lane
Frank Wiles writes: > Attached is a patch that makes the suggestion be 'rsync -avr' in both > backup.sgml and pg_standby.sgml. Seems to me the first question to ask is exactly why you got "bit" by cp. I doubt that rsync will provide a magic answer.

Re: [DOCS] Adding an table of contents in SGML

2009-03-30 Thread Tom Lane
; http://developer.postgresql.org/pgdocs/postgres/datatype.html That is a chapter heading, not a section heading. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] Array functions not mentioned in Index

2009-03-31 Thread Tom Lane
Mario Splivalo writes: > Hope this is ok. How can I submit patch for 8.3 documentation? I think you just did. Applied, thanks. regards, tom lane PS: why'd you omit unnest()? -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes

Re: [DOCS] SQL formatting in docs

2009-04-05 Thread Tom Lane
;re all laid out by hand :-( regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] log_min_duration_statement units

2009-04-06 Thread Tom Lane
#x27;t even work; did you test uncommenting that? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] log_min_duration_statement units

2009-04-06 Thread Tom Lane
it is ms regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] log_min_duration_statement units

2009-04-07 Thread Tom Lane
for people to know what the underlying variable's unit is? I certainly think that putting the unit info into the text descriptions is a seriously bad idea. It makes an already overly wide view even wider, and the information is 100% redundant with the "unit" column of the pg_settings view

Re: [DOCS] log_min_duration_statement units

2009-04-07 Thread Tom Lane
Bruce Momjian writes: > Tom Lane wrote: >> You know, it suddenly strikes me that this is going in largely the wrong >> direction. > Right, the problem particularly is with the -1/special values that don't > have a real unit. I don't object to what you did to post

Re: [DOCS] log_min_duration_statement units

2009-04-07 Thread Tom Lane
Bruce Momjian writes: > However, keep in mind that units are _not_ displayed for zero values: Well, zero is zero, so that seems fine. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: h

Re: [DOCS] Array functions not mentioned in Index

2009-04-09 Thread Tom Lane
Bruce Momjian writes: > Did unnest() get added properly too? Yes, I included it in the patch. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] Inheritance mention

2009-04-12 Thread Tom Lane
, but how much are we really saving? Four sentences out of our current docs doesn't excite me ... regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] Inheritance mention

2009-04-13 Thread Tom Lane
Scott Marlowe writes: > On Mon, Apr 13, 2009 at 12:04 AM, Tom Lane wrote: >> Pre-7.1 might indeed be old enough to cut, but how much are we really >> saving?  Four sentences out of our current docs doesn't excite me ... > But since there's a doc set per version,

Re: [DOCS] [GENERAL] Postgresql 8.3X supports Arrays of Composite Types?

2009-04-19 Thread Tom Lane
t is seen to have the right type, eg insert into person values ('Joe', array[row('1','')::phone, row('2','2222')::phone]); regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make chang

[DOCS] Splitting up release.sgml

2009-04-25 Thread Tom Lane
ed in the release.sgml file, but that doesn't change anymore in back branches so there's no risk of overwriting it.) Thoughts? regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

Re: [DOCS] XML documentation question

2009-04-26 Thread Tom Lane
ng. Couldn't the sentence be trimmed to just The following functions return XML Schema documents describing the mappings produced by the corresponding functions above. If that phrasing is wrong for some reason, then I agree with Bruce that the sentence needs a complete rewri

Re: [DOCS] Splitting up release.sgml

2009-04-26 Thread Tom Lane
7;t be adequate either, given that it won't change nearly as fast as the included files. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs

<    1   2   3   4   5   6   7   8   9   10   >