Re: [PATCHES] Split _bt_insertonpg to two functions

2007-03-03 Thread Bruce Momjian
Patch applied. Thanks. --- Heikki Linnakangas wrote: > Here's a patch that: > > Moves the logic to find a page with enough room from _bt_insertonpg to a > new function, _bt_findinsertloc. It makes the code more readable,

Re: [PATCHES] Split _bt_insertonpg to two functions

2007-02-28 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it. --- He

[PATCHES] Split _bt_insertonpg to two functions

2007-02-26 Thread Heikki Linnakangas
Here's a patch that: Moves the logic to find a page with enough room from _bt_insertonpg to a new function, _bt_findinsertloc. It makes the code more readable, and simplifies the forthcoming Grouped Index Tuples patch. Also, the insert location within page used to be calculated twice for uni