| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef HASH_H |
| #define HASH_H |
|
|
| #include "access/amapi.h" |
| #include "access/itup.h" |
| #include "access/sdir.h" |
| #include "catalog/pg_am_d.h" |
| #include "common/hashfn.h" |
| #include "lib/stringinfo.h" |
| #include "storage/bufmgr.h" |
| #include "storage/lockdefs.h" |
| #include "utils/hsearch.h" |
| #include "utils/relcache.h" |
|
|
| |
| |
| |
| |
| typedef uint32 Bucket; |
|
|
| #define InvalidBucket ((Bucket) 0xFFFFFFFF) |
|
|
| #define BUCKET_TO_BLKNO(metap,B) \ |
| ((BlockNumber) ((B) + ((B) ? (metap)->hashm_spares[_hash_spareindex((B)+1)-1] : 0)) + 1) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define LH_UNUSED_PAGE (0) |
| #define LH_OVERFLOW_PAGE (1 << 0) |
| #define LH_BUCKET_PAGE (1 << 1) |
| #define LH_BITMAP_PAGE (1 << 2) |
| #define LH_META_PAGE (1 << 3) |
| #define LH_BUCKET_BEING_POPULATED (1 << 4) |
| #define LH_BUCKET_BEING_SPLIT (1 << 5) |
| #define LH_BUCKET_NEEDS_SPLIT_CLEANUP (1 << 6) |
| #define LH_PAGE_HAS_DEAD_TUPLES (1 << 7) |
|
|
| #define LH_PAGE_TYPE \ |
| (LH_OVERFLOW_PAGE | LH_BUCKET_PAGE | LH_BITMAP_PAGE | LH_META_PAGE) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| typedef struct HashPageOpaqueData |
| { |
| BlockNumber hasho_prevblkno; |
| BlockNumber hasho_nextblkno; |
| Bucket hasho_bucket; |
| uint16 hasho_flag; |
| uint16 hasho_page_id; |
| } HashPageOpaqueData; |
|
|
| typedef HashPageOpaqueData *HashPageOpaque; |
|
|
| #define HashPageGetOpaque(page) ((HashPageOpaque) PageGetSpecialPointer(page)) |
|
|
| #define H_NEEDS_SPLIT_CLEANUP(opaque) (((opaque)->hasho_flag & LH_BUCKET_NEEDS_SPLIT_CLEANUP) != 0) |
| #define H_BUCKET_BEING_SPLIT(opaque) (((opaque)->hasho_flag & LH_BUCKET_BEING_SPLIT) != 0) |
| #define H_BUCKET_BEING_POPULATED(opaque) (((opaque)->hasho_flag & LH_BUCKET_BEING_POPULATED) != 0) |
| #define H_HAS_DEAD_TUPLES(opaque) (((opaque)->hasho_flag & LH_PAGE_HAS_DEAD_TUPLES) != 0) |
|
|
| |
| |
| |
| |
| |
| |
| #define HASHO_PAGE_ID 0xFF80 |
|
|
| typedef struct HashScanPosItem /* what we remember about each match */ |
| { |
| ItemPointerData heapTid; |
| OffsetNumber indexOffset; |
| } HashScanPosItem; |
|
|
| typedef struct HashScanPosData |
| { |
| Buffer buf; |
| BlockNumber currPage; |
| BlockNumber nextPage; |
| BlockNumber prevPage; |
|
|
| |
| |
| |
| |
| |
| |
| |
| int firstItem; |
| int lastItem; |
| int itemIndex; |
|
|
| HashScanPosItem items[MaxIndexTuplesPerPage]; |
| } HashScanPosData; |
|
|
| #define HashScanPosIsPinned(scanpos) \ |
| ( \ |
| AssertMacro(BlockNumberIsValid((scanpos).currPage) || \ |
| !BufferIsValid((scanpos).buf)), \ |
| BufferIsValid((scanpos).buf) \ |
| ) |
|
|
| #define HashScanPosIsValid(scanpos) \ |
| ( \ |
| AssertMacro(BlockNumberIsValid((scanpos).currPage) || \ |
| !BufferIsValid((scanpos).buf)), \ |
| BlockNumberIsValid((scanpos).currPage) \ |
| ) |
|
|
| #define HashScanPosInvalidate(scanpos) \ |
| do { \ |
| (scanpos).buf = InvalidBuffer; \ |
| (scanpos).currPage = InvalidBlockNumber; \ |
| (scanpos).nextPage = InvalidBlockNumber; \ |
| (scanpos).prevPage = InvalidBlockNumber; \ |
| (scanpos).firstItem = 0; \ |
| (scanpos).lastItem = 0; \ |
| (scanpos).itemIndex = 0; \ |
| } while (0) |
|
|
| |
| |
| |
| typedef struct HashScanOpaqueData |
| { |
| |
| uint32 hashso_sk_hash; |
|
|
| |
| Buffer hashso_bucket_buf; |
|
|
| |
| |
| |
| |
| |
| Buffer hashso_split_bucket_buf; |
|
|
| |
| bool hashso_buc_populated; |
|
|
| |
| |
| |
| |
| bool hashso_buc_split; |
| |
| int *killedItems; |
| int numKilled; |
|
|
| |
| |
| |
| |
| HashScanPosData currPos; |
| } HashScanOpaqueData; |
|
|
| typedef HashScanOpaqueData *HashScanOpaque; |
|
|
| |
| |
| |
|
|
| #define HASH_METAPAGE 0 |
|
|
| #define HASH_MAGIC 0x6440640 |
| #define HASH_VERSION 4 |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define HASH_MAX_BITMAPS Min(BLCKSZ / 8, 1024) |
|
|
| #define HASH_SPLITPOINT_PHASE_BITS 2 |
| #define HASH_SPLITPOINT_PHASES_PER_GRP (1 << HASH_SPLITPOINT_PHASE_BITS) |
| #define HASH_SPLITPOINT_PHASE_MASK (HASH_SPLITPOINT_PHASES_PER_GRP - 1) |
| #define HASH_SPLITPOINT_GROUPS_WITH_ONE_PHASE 10 |
|
|
| |
| #define HASH_MAX_SPLITPOINT_GROUP 32 |
| #define HASH_MAX_SPLITPOINTS \ |
| (((HASH_MAX_SPLITPOINT_GROUP - HASH_SPLITPOINT_GROUPS_WITH_ONE_PHASE) * \ |
| HASH_SPLITPOINT_PHASES_PER_GRP) + \ |
| HASH_SPLITPOINT_GROUPS_WITH_ONE_PHASE) |
|
|
| typedef struct HashMetaPageData |
| { |
| uint32 hashm_magic; |
| uint32 hashm_version; |
| double hashm_ntuples; |
| uint16 hashm_ffactor; |
| uint16 hashm_bsize; |
| uint16 hashm_bmsize; |
| |
| uint16 hashm_bmshift; |
| uint32 hashm_maxbucket; |
| uint32 hashm_highmask; |
| uint32 hashm_lowmask; |
| uint32 hashm_ovflpoint; |
| |
| uint32 hashm_firstfree; |
| uint32 hashm_nmaps; |
| RegProcedure hashm_procid; |
| uint32 hashm_spares[HASH_MAX_SPLITPOINTS]; |
| |
| BlockNumber hashm_mapp[HASH_MAX_BITMAPS]; |
| } HashMetaPageData; |
|
|
| typedef HashMetaPageData *HashMetaPage; |
|
|
| typedef struct HashOptions |
| { |
| int32 varlena_header_; |
| int fillfactor; |
| } HashOptions; |
|
|
| #define HashGetFillFactor(relation) \ |
| (AssertMacro(relation->rd_rel->relkind == RELKIND_INDEX && \ |
| relation->rd_rel->relam == HASH_AM_OID), \ |
| (relation)->rd_options ? \ |
| ((HashOptions *) (relation)->rd_options)->fillfactor : \ |
| HASH_DEFAULT_FILLFACTOR) |
| #define HashGetTargetPageUsage(relation) \ |
| (BLCKSZ * HashGetFillFactor(relation) / 100) |
|
|
| |
| |
| |
| #define HashMaxItemSize(page) \ |
| MAXALIGN_DOWN(PageGetPageSize(page) - \ |
| SizeOfPageHeaderData - \ |
| sizeof(ItemIdData) - \ |
| MAXALIGN(sizeof(HashPageOpaqueData))) |
|
|
| #define INDEX_MOVED_BY_SPLIT_MASK INDEX_AM_RESERVED_BIT |
|
|
| #define HASH_MIN_FILLFACTOR 10 |
| #define HASH_DEFAULT_FILLFACTOR 75 |
|
|
| |
| |
| |
| #define BYTE_TO_BIT 3 |
| #define ALL_SET ((uint32) ~0) |
|
|
| |
| |
| |
| |
| |
| |
| |
| #define BMPGSZ_BYTE(metap) ((metap)->hashm_bmsize) |
| #define BMPGSZ_BIT(metap) ((metap)->hashm_bmsize << BYTE_TO_BIT) |
| #define BMPG_SHIFT(metap) ((metap)->hashm_bmshift) |
| #define BMPG_MASK(metap) (BMPGSZ_BIT(metap) - 1) |
|
|
| #define HashPageGetBitmap(page) \ |
| ((uint32 *) PageGetContents(page)) |
|
|
| #define HashGetMaxBitmapSize(page) \ |
| (PageGetPageSize((Page) page) - \ |
| (MAXALIGN(SizeOfPageHeaderData) + MAXALIGN(sizeof(HashPageOpaqueData)))) |
|
|
| #define HashPageGetMeta(page) \ |
| ((HashMetaPage) PageGetContents(page)) |
|
|
| |
| |
| |
| #define BITS_PER_MAP 32 |
|
|
| |
| #define CLRBIT(A, N) ((A)[(N)/BITS_PER_MAP] &= ~(1<<((N)%BITS_PER_MAP))) |
| #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) |
| #define ISSET(A, N) ((A)[(N)/BITS_PER_MAP] & (1<<((N)%BITS_PER_MAP))) |
|
|
| |
| |
| |
| #define HASH_READ BUFFER_LOCK_SHARE |
| #define HASH_WRITE BUFFER_LOCK_EXCLUSIVE |
| #define HASH_NOLOCK (-1) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define HASHSTANDARD_PROC 1 |
| #define HASHEXTENDED_PROC 2 |
| #define HASHOPTIONS_PROC 3 |
| #define HASHNProcs 3 |
|
|
|
|
| |
|
|
| extern IndexBuildResult *hashbuild(Relation heap, Relation index, |
| struct IndexInfo *indexInfo); |
| extern void hashbuildempty(Relation index); |
| extern bool hashinsert(Relation rel, Datum *values, bool *isnull, |
| ItemPointer ht_ctid, Relation heapRel, |
| IndexUniqueCheck checkUnique, |
| bool indexUnchanged, |
| struct IndexInfo *indexInfo); |
| extern bool hashgettuple(IndexScanDesc scan, ScanDirection dir); |
| extern int64 hashgetbitmap(IndexScanDesc scan, TIDBitmap *tbm); |
| extern IndexScanDesc hashbeginscan(Relation rel, int nkeys, int norderbys); |
| extern void hashrescan(IndexScanDesc scan, ScanKey scankey, int nscankeys, |
| ScanKey orderbys, int norderbys); |
| extern void hashendscan(IndexScanDesc scan); |
| extern IndexBulkDeleteResult *hashbulkdelete(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *stats, |
| IndexBulkDeleteCallback callback, |
| void *callback_state); |
| extern IndexBulkDeleteResult *hashvacuumcleanup(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *stats); |
| extern bytea *hashoptions(Datum reloptions, bool validate); |
| extern bool hashvalidate(Oid opclassoid); |
| extern void hashadjustmembers(Oid opfamilyoid, |
| Oid opclassoid, |
| List *operators, |
| List *functions); |
|
|
| |
|
|
| |
| extern void _hash_doinsert(Relation rel, IndexTuple itup, Relation heapRel, |
| bool sorted); |
| extern OffsetNumber _hash_pgaddtup(Relation rel, Buffer buf, |
| Size itemsize, IndexTuple itup, |
| bool appendtup); |
| extern void _hash_pgaddmultitup(Relation rel, Buffer buf, IndexTuple *itups, |
| OffsetNumber *itup_offsets, uint16 nitups); |
|
|
| |
| extern Buffer _hash_addovflpage(Relation rel, Buffer metabuf, Buffer buf, bool retain_pin); |
| extern BlockNumber _hash_freeovflpage(Relation rel, Buffer bucketbuf, Buffer ovflbuf, |
| Buffer wbuf, IndexTuple *itups, OffsetNumber *itup_offsets, |
| Size *tups_size, uint16 nitups, BufferAccessStrategy bstrategy); |
| extern void _hash_initbitmapbuffer(Buffer buf, uint16 bmsize, bool initpage); |
| extern void _hash_squeezebucket(Relation rel, |
| Bucket bucket, BlockNumber bucket_blkno, |
| Buffer bucket_buf, |
| BufferAccessStrategy bstrategy); |
| extern uint32 _hash_ovflblkno_to_bitno(HashMetaPage metap, BlockNumber ovflblkno); |
|
|
| |
| extern Buffer _hash_getbuf(Relation rel, BlockNumber blkno, |
| int access, int flags); |
| extern Buffer _hash_getbuf_with_condlock_cleanup(Relation rel, |
| BlockNumber blkno, int flags); |
| extern HashMetaPage _hash_getcachedmetap(Relation rel, Buffer *metabuf, |
| bool force_refresh); |
| extern Buffer _hash_getbucketbuf_from_hashkey(Relation rel, uint32 hashkey, |
| int access, |
| HashMetaPage *cachedmetap); |
| extern Buffer _hash_getinitbuf(Relation rel, BlockNumber blkno); |
| extern void _hash_initbuf(Buffer buf, uint32 max_bucket, uint32 num_bucket, |
| uint32 flag, bool initpage); |
| extern Buffer _hash_getnewbuf(Relation rel, BlockNumber blkno, |
| ForkNumber forkNum); |
| extern Buffer _hash_getbuf_with_strategy(Relation rel, BlockNumber blkno, |
| int access, int flags, |
| BufferAccessStrategy bstrategy); |
| extern void _hash_relbuf(Relation rel, Buffer buf); |
| extern void _hash_dropbuf(Relation rel, Buffer buf); |
| extern void _hash_dropscanbuf(Relation rel, HashScanOpaque so); |
| extern uint32 _hash_init(Relation rel, double num_tuples, |
| ForkNumber forkNum); |
| extern void _hash_init_metabuffer(Buffer buf, double num_tuples, |
| RegProcedure procid, uint16 ffactor, bool initpage); |
| extern void _hash_pageinit(Page page, Size size); |
| extern void _hash_expandtable(Relation rel, Buffer metabuf); |
| extern void _hash_finish_split(Relation rel, Buffer metabuf, Buffer obuf, |
| Bucket obucket, uint32 maxbucket, uint32 highmask, |
| uint32 lowmask); |
|
|
| |
| extern bool _hash_next(IndexScanDesc scan, ScanDirection dir); |
| extern bool _hash_first(IndexScanDesc scan, ScanDirection dir); |
|
|
| |
| typedef struct HSpool HSpool; |
|
|
| extern HSpool *_h_spoolinit(Relation heap, Relation index, uint32 num_buckets); |
| extern void _h_spooldestroy(HSpool *hspool); |
| extern void _h_spool(HSpool *hspool, ItemPointer self, |
| const Datum *values, const bool *isnull); |
| extern void _h_indexbuild(HSpool *hspool, Relation heapRel); |
|
|
| |
| extern bool _hash_checkqual(IndexScanDesc scan, IndexTuple itup); |
| extern uint32 _hash_datum2hashkey(Relation rel, Datum key); |
| extern uint32 _hash_datum2hashkey_type(Relation rel, Datum key, Oid keytype); |
| extern Bucket _hash_hashkey2bucket(uint32 hashkey, uint32 maxbucket, |
| uint32 highmask, uint32 lowmask); |
| extern uint32 _hash_spareindex(uint32 num_bucket); |
| extern uint32 _hash_get_totalbuckets(uint32 splitpoint_phase); |
| extern void _hash_checkpage(Relation rel, Buffer buf, int flags); |
| extern uint32 _hash_get_indextuple_hashkey(IndexTuple itup); |
| 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); |
| extern BlockNumber _hash_get_oldblock_from_newbucket(Relation rel, Bucket new_bucket); |
| extern BlockNumber _hash_get_newblock_from_oldbucket(Relation rel, Bucket old_bucket); |
| extern Bucket _hash_get_newbucket_from_oldbucket(Relation rel, Bucket old_bucket, |
| uint32 lowmask, uint32 maxbucket); |
| extern void _hash_kill_items(IndexScanDesc scan); |
|
|
| |
| extern void hashbucketcleanup(Relation rel, Bucket cur_bucket, |
| Buffer bucket_buf, BlockNumber bucket_blkno, |
| BufferAccessStrategy bstrategy, |
| uint32 maxbucket, uint32 highmask, uint32 lowmask, |
| double *tuples_removed, double *num_index_tuples, |
| bool split_cleanup, |
| IndexBulkDeleteCallback callback, void *callback_state); |
|
|
| #endif |
|
|