| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef GENAM_H |
| #define GENAM_H |
|
|
| #include "access/sdir.h" |
| #include "access/skey.h" |
| #include "nodes/tidbitmap.h" |
| #include "storage/lockdefs.h" |
| #include "utils/relcache.h" |
| #include "utils/snapshot.h" |
|
|
| |
| struct IndexInfo; |
|
|
| |
| |
| |
| typedef struct IndexBuildResult |
| { |
| double heap_tuples; |
| double index_tuples; |
| } IndexBuildResult; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| typedef struct IndexVacuumInfo |
| { |
| Relation index; |
| Relation heaprel; |
| bool analyze_only; |
| bool report_progress; |
| bool estimated_count; |
| int message_level; |
| double num_heap_tuples; |
| BufferAccessStrategy strategy; |
| } IndexVacuumInfo; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| typedef struct IndexBulkDeleteResult |
| { |
| BlockNumber num_pages; |
| bool estimated_count; |
| double num_index_tuples; |
| double tuples_removed; |
| BlockNumber pages_newly_deleted; |
| BlockNumber pages_deleted; |
| BlockNumber pages_free; |
| } IndexBulkDeleteResult; |
|
|
| |
| typedef bool (*IndexBulkDeleteCallback) (ItemPointer itemptr, void *state); |
|
|
| |
| typedef struct IndexScanDescData *IndexScanDesc; |
| typedef struct SysScanDescData *SysScanDesc; |
|
|
| typedef struct ParallelIndexScanDescData *ParallelIndexScanDesc; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| typedef enum IndexUniqueCheck |
| { |
| UNIQUE_CHECK_NO, |
| UNIQUE_CHECK_YES, |
| UNIQUE_CHECK_PARTIAL, |
| UNIQUE_CHECK_EXISTING, |
| } IndexUniqueCheck; |
|
|
|
|
| |
| typedef struct IndexOrderByDistance |
| { |
| double value; |
| bool isnull; |
| } IndexOrderByDistance; |
|
|
| |
| |
| |
|
|
| |
| |
| |
| |
| #define IndexScanIsValid(scan) PointerIsValid(scan) |
|
|
| extern Relation index_open(Oid relationId, LOCKMODE lockmode); |
| extern Relation try_index_open(Oid relationId, LOCKMODE lockmode); |
| extern void index_close(Relation relation, LOCKMODE lockmode); |
|
|
| extern bool index_insert(Relation indexRelation, |
| Datum *values, bool *isnull, |
| ItemPointer heap_t_ctid, |
| Relation heapRelation, |
| IndexUniqueCheck checkUnique, |
| bool indexUnchanged, |
| struct IndexInfo *indexInfo); |
| extern void index_insert_cleanup(Relation indexRelation, |
| struct IndexInfo *indexInfo); |
|
|
| extern IndexScanDesc index_beginscan(Relation heapRelation, |
| Relation indexRelation, |
| Snapshot snapshot, |
| int nkeys, int norderbys); |
| extern IndexScanDesc index_beginscan_bitmap(Relation indexRelation, |
| Snapshot snapshot, |
| int nkeys); |
| extern void index_rescan(IndexScanDesc scan, |
| ScanKey keys, int nkeys, |
| ScanKey orderbys, int norderbys); |
| extern void index_endscan(IndexScanDesc scan); |
| extern void index_markpos(IndexScanDesc scan); |
| extern void index_restrpos(IndexScanDesc scan); |
| extern Size index_parallelscan_estimate(Relation indexRelation, |
| int nkeys, int norderbys, Snapshot snapshot); |
| extern void index_parallelscan_initialize(Relation heapRelation, |
| Relation indexRelation, Snapshot snapshot, |
| ParallelIndexScanDesc target); |
| extern void index_parallelrescan(IndexScanDesc scan); |
| extern IndexScanDesc index_beginscan_parallel(Relation heaprel, |
| Relation indexrel, int nkeys, int norderbys, |
| ParallelIndexScanDesc pscan); |
| extern ItemPointer index_getnext_tid(IndexScanDesc scan, |
| ScanDirection direction); |
| struct TupleTableSlot; |
| extern bool index_fetch_heap(IndexScanDesc scan, struct TupleTableSlot *slot); |
| extern bool index_getnext_slot(IndexScanDesc scan, ScanDirection direction, |
| struct TupleTableSlot *slot); |
| extern int64 index_getbitmap(IndexScanDesc scan, TIDBitmap *bitmap); |
|
|
| extern IndexBulkDeleteResult *index_bulk_delete(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *istat, |
| IndexBulkDeleteCallback callback, |
| void *callback_state); |
| extern IndexBulkDeleteResult *index_vacuum_cleanup(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *istat); |
| extern bool index_can_return(Relation indexRelation, int attno); |
| extern RegProcedure index_getprocid(Relation irel, AttrNumber attnum, |
| uint16 procnum); |
| extern FmgrInfo *index_getprocinfo(Relation irel, AttrNumber attnum, |
| uint16 procnum); |
| extern void index_store_float8_orderby_distances(IndexScanDesc scan, |
| Oid *orderByTypes, |
| IndexOrderByDistance *distances, |
| bool recheckOrderBy); |
| extern bytea *index_opclass_options(Relation indrel, AttrNumber attnum, |
| Datum attoptions, bool validate); |
|
|
|
|
| |
| |
| |
| extern IndexScanDesc RelationGetIndexScan(Relation indexRelation, |
| int nkeys, int norderbys); |
| extern void IndexScanEnd(IndexScanDesc scan); |
| extern char *BuildIndexValueDescription(Relation indexRelation, |
| const Datum *values, const bool *isnull); |
| extern TransactionId index_compute_xid_horizon_for_tuples(Relation irel, |
| Relation hrel, |
| Buffer ibuf, |
| OffsetNumber *itemnos, |
| int nitems); |
|
|
| |
| |
| |
| 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); |
| extern void systable_inplace_update_begin(Relation relation, |
| Oid indexId, |
| bool indexOK, |
| Snapshot snapshot, |
| int nkeys, const ScanKeyData *key, |
| HeapTuple *oldtupcopy, |
| void **state); |
| extern void systable_inplace_update_finish(void *state, HeapTuple tuple); |
| extern void systable_inplace_update_cancel(void *state); |
|
|
| #endif |
|
|