From: | Teodor Sigaev <teodor(at)sigaev(dot)ru> |
---|---|
To: | sharath kumar <k(dot)sharat(at)gmail(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: need help in understanding gist function |
Date: | 2007-03-14 14:07:34 |
Message-ID: | 45F801A6.7010509@sigaev.ru |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
> 1. What is the functionality of gistplacetopage() function in gist.c
> ?Can you please give me detail description of this function.
It tries to place index tuple on page. If page hasn't enough space,
gistplacetopage splits page on two or more pages. Number of page to be splitted
depends, basically, on quality of user-defined picksplit and distribution of
tuple's length.
> 2. I have left and right buffers with values that I have filled. Now,
> how do I write these changes(buffers) permanently into gistentry pages?
Sorry, I don't understand your questions. Where you have left and right buffers?
Real write are produced by bgwriter process, in backend we should just mark
byffer as dirty with a help of MarkBufferDirty call.
--
Teodor Sigaev E-mail: teodor(at)sigaev(dot)ru
WWW: http://www.sigaev.ru/
From | Date | Subject | |
---|---|---|---|
Next Message | David Fetter | 2007-03-14 14:24:43 | Re: My honours project - databases using dynamically attached entity-properties |
Previous Message | Martijn van Oosterhout | 2007-03-14 14:04:44 | Re: Daylight Saving Time question PostgreSQL 8.1.4 |