Re: [PATCHES] Minor verbosity increase for analyze

2003-09-11 Thread Tom Lane
Mark Kirkwood <[EMAIL PROTECTED]> writes: > Found some bugs with this patch - that makes it about 1 per line > patched... :-( > i) onerel->rd_nblocks should be elog'ed as an unsigned int. > ii) acquire_sample_rows has 2 return points - I had ignored the case > where the > onerel has < sampl

Re: [PATCHES] Minor verbosity increase for analyze

2003-09-05 Thread Mark Kirkwood
Found some bugs with this patch - that makes it about 1 per line patched... :-( i) onerel->rd_nblocks should be elog'ed as an unsigned int. ii) acquire_sample_rows has 2 return points - I had ignored the case where the onerel has < sample size tuples in it. --- src/backend/commands/analyz

Re: [PATCHES] Minor verbosity increase for analyze

2003-08-26 Thread Bruce Momjian
This was the actual patch applied. --- Mark Kirkwood wrote: > After browsing this list, I thought I would re-submit this in a more > standard form. > > In addition I corrected a couple of things (integer cast for the numbe

Re: [PATCHES] Minor verbosity increase for analyze

2003-08-26 Thread Bruce Momjian
Newest version of patch applied. Thanks. --- Mark Kirkwood wrote: > Attached is a (very small) patch to make analyze display some > interesting info in > verbose mode about the analyzed relation (pages, rows per block and

Re: [PATCHES] Minor verbosity increase for analyze

2003-08-16 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches I will try to apply it within the next 48 hours. --- Mark Kirkwood wrote: > After browsing thi

Re: [PATCHES] Minor verbosity increase for analyze

2003-07-31 Thread Mark Kirkwood
After browsing this list, I thought I would re-submit this in a more standard form. In addition I corrected a couple of things (integer cast for the number of rows, and capitalization in the comment) regards Mark --- src/backend/commands/analyze.c.orig 2003-07-31 20:49:22.0 -0400 +++

[PATCHES] Minor verbosity increase for analyze

2003-07-30 Thread Mark Kirkwood
Attached is a (very small) patch to make analyze display some interesting info in verbose mode about the analyzed relation (pages, rows per block and rows ). This is all available in the statistics catalog but I have found it useful to see it appear as you run... mods to : src/backend/commands