Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-04-10 Thread Bruce Momjian
I have added URLs to your patch to the TODO list: * Allow data to be pulled directly from indexes --- Gokulakannan Somasundaram wrote: Hi, I would like to present the first patch. It currently has the

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-28 Thread Gokulakannan Somasundaram
I am not seeing my mail getting listed in the archives. So i am just resending it, in case the above one has got missed. Thanks, Gokul. On Jan 28, 2008 4:14 PM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: Doh! Can you please send another patch with gram.y as well. Mine is missing

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-28 Thread Jonah H. Harris
On Jan 28, 2008 8:21 AM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: I am not seeing my mail getting listed in the archives. So i am just resending it, in case the above one has got missed. It was sent. Archive processing is delayed. -- Jonah H. Harris, Sr. Software Architect | phone:

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-23 Thread Gokulakannan Somasundaram
This fixes the bug in dealing with scans with 'or' conditions. I have also attached the design document. Thanks, Gokul. On Jan 16, 2008 7:25 PM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: Hi, I did some more bug fixes and performance updates especially for select count(1)

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-23 Thread Gokulakannan Somasundaram
Fixed a type 'o' On Jan 23, 2008 9:28 PM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: This fixes the bug in dealing with scans with 'or' conditions. I have also attached the design document. Thanks, Gokul. On Jan 16, 2008 7:25 PM, Gokulakannan Somasundaram [EMAIL PROTECTED]

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-23 Thread Jonah H. Harris
On Jan 23, 2008 11:28 AM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: Fixed a type 'o' I'm playing with this now against 8.3 HEAD. Looks like there's a couple things which are problematic: - DefineIndex was updated only in bootparse.c, not in bootparse.y - The patch contains changes

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-23 Thread Gokulakannan Somasundaram
Thanks for reviewing the patch. Please go ahead and make the changes and re-submit the patch. I will take care, that i won't repeat the stated mistakes again. The Missing of Thick Keyword - i don't know how it got removed. Thanks, Gokul On Jan 23, 2008 10:49 PM, Jonah H. Harris [EMAIL

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-23 Thread Jonah H. Harris
Doh! Can you please send another patch with gram.y as well. Mine is missing all of the thick index stuff. On Jan 23, 2008 2:45 PM, Gokulakannan Somasundaram [EMAIL PROTECTED] wrote: Thanks for reviewing the patch. Please go ahead and make the changes and re-submit the patch. I will take care,

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2008-01-16 Thread Gokulakannan Somasundaram
Hi, I did some more bug fixes and performance updates especially for select count(1) queries. Thanks, Gokul. patchfile.tar.gz Description: GNU Zip compressed data ---(end of broadcast)--- TIP 5: don't forget to increase your free space map

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2007-10-24 Thread Bruce Momjian
This has been saved for consideration for the 8.4 release: http://momjian.postgresql.org/cgi-bin/pgpatches_hold --- Gokulakannan Somasundaram wrote: Hi, I would like to present the first patch. It currently

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2007-10-23 Thread Gokulakannan Somasundaram
Hi, I would like to present the first patch. It currently has the following restrictions a) It does not support any functional indexes. b) It supports queries like select count(1) from table where (restrictions from indexed columns), but it does not support select count(1) from table. The

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2007-10-23 Thread Heikki Linnakangas
Gokulakannan Somasundaram wrote: I would like to present the first patch. It currently has the following restrictions a) It does not support any functional indexes. b) It supports queries like select count(1) from table where (restrictions from indexed columns), but it does not support

Re: [PATCHES] [HACKERS] Including Snapshot Info with Indexes

2007-10-23 Thread Gokulakannan Somasundaram
On 10/23/07, Heikki Linnakangas [EMAIL PROTECTED] wrote: Gokulakannan Somasundaram wrote: I would like to present the first patch. It currently has the following restrictions a) It does not support any functional indexes. b) It supports queries like select count(1) from table where