diff options
Diffstat (limited to 'src/include/access/hash.h')
-rw-r--r-- | src/include/access/hash.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h index fa3f9b61caa..ce314180e6b 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -359,8 +359,9 @@ extern Bucket _hash_hashkey2bucket(uint32 hashkey, uint32 maxbucket, extern uint32 _hash_log2(uint32 num); extern void _hash_checkpage(Relation rel, Buffer buf, int flags); extern uint32 _hash_get_indextuple_hashkey(IndexTuple itup); -extern IndexTuple _hash_form_tuple(Relation index, - Datum *values, bool *isnull); +extern bool _hash_convert_tuple(Relation index, + Datum *user_values, bool *user_isnull, + Datum *index_values, bool *index_isnull); extern OffsetNumber _hash_binsearch(Page page, uint32 hash_value); extern OffsetNumber _hash_binsearch_last(Page page, uint32 hash_value); |