mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Support multiple iterators in the Red-Black Tree implementation.
While we don't need multiple iterators at the moment, the interface is nicer and less dangerous this way. Aleksander Alekseev, with some changes by me.
This commit is contained in:
@ -919,6 +919,7 @@ typedef struct
|
||||
GinEntryAccumulator *entryallocator;
|
||||
uint32 eas_used;
|
||||
RBTree *tree;
|
||||
RBTreeIterator tree_walk;
|
||||
} BuildAccumulator;
|
||||
|
||||
extern void ginInitBA(BuildAccumulator *accum);
|
||||
|
Reference in New Issue
Block a user