Re: [PATCHES] Hash Index Build Patch v2

2008-03-17 Thread Tom Raney
Tom, Thanks for your comments and for your work incorporating our patch into 8.4. This will help us provide even a better patch next time around :) -Shreya Bhargava and Tom Raney Tom Raney <[EMAIL PROTECTED]> writes: This revised version of our patch uses the function estimate_rel_size()

Re: [PATCHES] Hash Index Build Patch v2

2008-03-16 Thread Tom Lane
Tom Raney <[EMAIL PROTECTED]> writes: > This revised version of our patch uses the function estimate_rel_size() > from plancat.c to estimate the number of tuples in the parent relation. > This method is an alternative to scanning the parent relation to > estimate the number of tuples, as we did

Re: [PATCHES] Hash Index Build Patch v2

2007-10-22 Thread Bruce Momjian
This has been saved for the 8.4 release: http://momjian.postgresql.org/cgi-bin/pgpatches_hold --- Tom Raney wrote: > This revised version of our patch uses the function estimate_rel_size() > from plancat.c to estim

[PATCHES] Hash Index Build Patch v2

2007-10-21 Thread Tom Raney
This revised version of our patch uses the function estimate_rel_size() from plancat.c to estimate the number of tuples in the parent relation. This method is an alternative to scanning the parent relation to estimate the number of tuples, as we did in the first version of the patch. -Tom #in