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 in

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

[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