*
* genam.h
* openGauss generalized index access method definitions.
*
*
* Portions Copyright (c) 2020 Huawei Technologies Co.,Ltd.
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/access/genam.h
*
* -------------------------------------------------------------------------
*/
#ifndef GENAM_H
#define GENAM_H
#include "access/sdir.h"
#include "access/skey.h"
#include "nodes/tidbitmap.h"
#include "storage/lock/lock.h"
#include "utils/relcache.h"
#include "utils/snapshot.h"
#include "utils/oidrbtree.h"
#include "vecexecutor/vectorbatch.h"
#include "access/ustore/knl_utuple.h"
* Struct for statistics returned by ambuild
*/
typedef struct IndexBuildResult {
double heap_tuples;
double index_tuples;
double* all_part_tuples;
} IndexBuildResult;
* Struct for input arguments passed to ambulkdelete and amvacuumcleanup
*
* num_heap_tuples is accurate only when estimated_count is false;
* otherwise it's just an estimate (currently, the estimate is the
* prior value of the relation's pg_class.reltuples field). It will
* always just be an estimate during ambulkdelete.
*/
typedef struct IndexVacuumInfo {
Relation index;
bool analyze_only;
bool estimated_count;
int message_level;
double num_heap_tuples;
BufferAccessStrategy strategy;
OidRBTree *invisibleParts;
} IndexVacuumInfo;
* Struct for statistics returned by ambulkdelete and amvacuumcleanup
*
* This struct is normally allocated by the first ambulkdelete call and then
* passed along through subsequent ones until amvacuumcleanup; however,
* amvacuumcleanup must be prepared to allocate it in the case where no
* ambulkdelete calls were made (because no tuples needed deletion).
* Note that an index AM could choose to return a larger struct
* of which this is just the first field; this provides a way for ambulkdelete
* to communicate additional private data to amvacuumcleanup.
*
* Note: pages_removed is the amount by which the index physically shrank,
* if any (ie the change in its total size on disk). pages_deleted and
* pages_free refer to free space within the index file. Some index AMs
* may compute num_index_tuples by reference to num_heap_tuples, in which
* case they should copy the estimated_count field from IndexVacuumInfo.
*/
typedef struct IndexBulkDeleteResult {
BlockNumber num_pages;
BlockNumber pages_removed;
bool estimated_count;
double num_index_tuples;
double tuples_removed;
BlockNumber pages_deleted;
BlockNumber pages_free;
} IndexBulkDeleteResult;
typedef bool (*IndexBulkDeleteCallback)(ItemPointer itemptr, void* state, Oid partOid, int2 bktId);
typedef struct IndexScanDescData* IndexScanDesc;
typedef struct SysScanDescData* SysScanDesc;
struct ScanState;
typedef struct ParallelIndexScanDescData *ParallelIndexScanDesc;
* Enumeration specifying the type of uniqueness check to perform in
* index_insert().
*
* UNIQUE_CHECK_YES is the traditional openGauss immediate check, possibly
* blocking to see if a conflicting transaction commits.
*
* For deferrable unique constraints, UNIQUE_CHECK_PARTIAL is specified at
* insertion time. The index AM should test if the tuple is unique, but
* should not throw error, block, or prevent the insertion if the tuple
* appears not to be unique. We'll recheck later when it is time for the
* constraint to be enforced. The AM must return true if the tuple is
* known unique, false if it is possibly non-unique. In the "true" case
* it is safe to omit the later recheck.
*
* When it is time to recheck the deferred constraint, a pseudo-insertion
* call is made with UNIQUE_CHECK_EXISTING. The tuple is already in the
* index in this case, so it should not be inserted again. Rather, just
* check for conflicting live tuples (possibly blocking).
*/
typedef enum IndexUniqueCheck {
UNIQUE_CHECK_NO,
UNIQUE_CHECK_YES,
UNIQUE_CHECK_PARTIAL,
UNIQUE_CHECK_EXISTING
} IndexUniqueCheck;
* generalized index_ interface routines (in indexam.c)
*/
* IndexScanIsValid
* True iff the index scan is valid.
*/
#define IndexScanIsValid(scan) PointerIsValid(scan)
extern Relation index_open(Oid relationId, LOCKMODE lockmode, int2 bucketId=-1);
extern void index_close(Relation relation, LOCKMODE lockmode);
extern void index_delete(Relation index_relation, Datum* values, const bool* isnull, ItemPointer heap_t_ctid,
bool isRollbackIndex);
extern bool index_insert(Relation indexRelation, Datum* values, const bool* isnull, ItemPointer heap_t_ctid,
Relation heapRelation, IndexUniqueCheck checkUnique);
extern IndexScanDesc index_beginscan(Relation heapRelation, Relation indexRelation, Snapshot snapshot,
int nkeys, int norderbys, ScanState* scan_state = NULL, ParallelIndexScanDesc pscan = NULL);
extern void index_parallelscan_initialize(Relation heap_relation,
Relation index_relation, ParallelIndexScanDesc pIndexScan);
extern IndexScanDesc index_beginscan_bitmap(Relation indexRelation, Snapshot snapshot, int nkeys, ScanState* scan_state=NULL);
extern void index_rescan(IndexScanDesc scan, ScanKey keys, int nkeys, ScanKey orderbys, int norderbys);
extern void IndexRescanParallel(IndexScanDesc scan);
extern void index_endscan(IndexScanDesc scan);
extern void index_markpos(IndexScanDesc scan);
extern void index_restrpos(IndexScanDesc scan);
extern ItemPointer index_getnext_tid(IndexScanDesc scan, ScanDirection direction);
extern Tuple IndexFetchTuple(IndexScanDesc scan, bool* has_cur_xact_write = NULL);
extern bool IndexFetchSlot(IndexScanDesc scan, TupleTableSlot *slot, bool isUHeap, bool* has_cur_xact_write = NULL);
extern Tuple index_getnext(IndexScanDesc scan, ScanDirection direction, bool* has_cur_xact_write = NULL);
extern bool IndexFetchUHeap(IndexScanDesc scan, TupleTableSlot *slot, bool* has_cur_xact_write = NULL);
extern UHeapTuple UHeapamIndexFetchTuple(IndexScanDesc scan, bool *all_dead, bool* has_cur_xact_write = NULL);
extern bool UHeapamIndexFetchTupleInSlot(IndexScanDesc scan, ItemPointer tid, Snapshot snapshot,
TupleTableSlot *slot, bool *callAgain, bool *allDead,
bool* has_cur_xact_write = NULL);
extern bool UHeapSysIndexGetnextSlot(SysScanDesc scan, ScanDirection direction, TupleTableSlot *slot);
extern bool IndexGetnextSlot(IndexScanDesc scan, ScanDirection direction, TupleTableSlot *slot,
bool* has_cur_xact_write = NULL);
extern int64 index_getbitmap(IndexScanDesc scan, TIDBitmap* bitmap);
extern int64 index_column_getbitmap(IndexScanDesc scandesc, const void* sort, VectorBatch* tids);
extern IndexBulkDeleteResult* index_bulk_delete(
IndexVacuumInfo* info, IndexBulkDeleteResult* stats, IndexBulkDeleteCallback callback, const void* callback_state);
extern IndexBulkDeleteResult* index_vacuum_cleanup(IndexVacuumInfo* info, IndexBulkDeleteResult* stats);
extern bool index_can_return(Relation indexRelation);
extern RegProcedure index_getprocid(Relation irel, AttrNumber attnum, uint16 procnum);
extern FmgrInfo* index_getprocinfo(Relation irel, AttrNumber attnum, uint16 procnum);
* index access method support routines (in genam.c)
*/
extern IndexScanDesc RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys);
extern void IndexScanEnd(IndexScanDesc scan);
extern char* BuildIndexValueDescription(Relation indexRelation, Datum* values, const bool* isnull);
* heap-or-index access to system catalogs (in genam.c)
*/
extern SysScanDesc systable_beginscan(
Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key);
extern HeapTuple systable_getnext(SysScanDesc sysscan);
extern bool systable_recheck_tuple(SysScanDesc sysscan, HeapTuple tup);
extern void systable_endscan(SysScanDesc sysscan);
extern SysScanDesc systable_beginscan_ordered(
Relation heapRelation, Relation indexRelation, Snapshot snapshot, int nkeys, ScanKey key);
extern HeapTuple systable_getnext_ordered(SysScanDesc sysscan, ScanDirection direction);
extern void systable_endscan_ordered(SysScanDesc sysscan);
HeapTuple systable_getnext_back(SysScanDesc sysscan);
* global partition index access method support routines (in genam.c)
*/
typedef struct GPIScanDescData {
HTAB* fakeRelationTable;
OidRBTree* invisiblePartTree;
OidRBTree* invisiblePartTreeForVacuum;
* to determine the index tuple
* can be marked as dead
*/
Relation parentRelation;
Relation fakePartRelation;
Partition partition;
Oid currPartOid;
} GPIScanDescData;
typedef GPIScanDescData* GPIScanDesc;
* global bucket index access method support routines (in genam.c)
*/
typedef struct CBIScanDescData {
HTAB* fakeRelationTable;
Relation parentRelation;
Relation fakeBucketRelation;
Partition partition;
int2 bucketid;
int2 mergingBktId;
} CBIScanDescData;
typedef CBIScanDescData* CBIScanDesc;
inline bool GPIScanCheckPartOid(GPIScanDesc gpiScan, Oid currScanPartOid)
{
if (!PointerIsValid(gpiScan)) {
return false;
}
return gpiScan->currPartOid != currScanPartOid;
}
extern void GPIScanInit(GPIScanDesc* gpiScan);
extern void GPIScanEnd(GPIScanDesc gpiScan);
extern bool GPIGetNextPartRelation(GPIScanDesc gpiScan, MemoryContext cxt, LOCKMODE lmode);
extern void GPISetCurrPartOid(GPIScanDesc gpiScan, Oid partOid);
extern Oid GPIGetCurrPartOid(const GPIScanDesc gpiScan);
extern void cbi_scan_init(CBIScanDesc* cbiScan);
extern void cbi_scan_end(CBIScanDesc cbiScan);
extern int2 cbi_get_current_bucketid(const CBIScanDesc cbiScan);
bool cbi_get_bucket_relation(CBIScanDesc cbiScan, MemoryContext cxt);
extern void cbi_set_bucketid(CBIScanDesc cbiScan, int2 butcketid);
inline bool cbi_scan_need_change_bucket(CBIScanDesc cbiscan, int2 bucketid)
{
if (!PointerIsValid(cbiscan)) {
return false;
}
return (cbiscan->bucketid != bucketid);
}
#endif