| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef BRIN_INTERNAL_H |
| #define BRIN_INTERNAL_H |
|
|
| #include "access/amapi.h" |
| #include "storage/bufpage.h" |
| #include "utils/typcache.h" |
|
|
|
|
| |
| |
| |
| |
|
|
| |
| typedef struct BrinOpcInfo |
| { |
| |
| uint16 oi_nstored; |
|
|
| |
| bool oi_regular_nulls; |
|
|
| |
| void *oi_opaque; |
|
|
| |
| TypeCacheEntry *oi_typcache[FLEXIBLE_ARRAY_MEMBER]; |
| } BrinOpcInfo; |
|
|
| |
| #define SizeofBrinOpcInfo(ncols) \ |
| (offsetof(BrinOpcInfo, oi_typcache) + sizeof(TypeCacheEntry *) * ncols) |
|
|
| typedef struct BrinDesc |
| { |
| |
| MemoryContext bd_context; |
|
|
| |
| Relation bd_index; |
|
|
| |
| TupleDesc bd_tupdesc; |
|
|
| |
| TupleDesc bd_disktdesc; |
|
|
| |
| int bd_totalstored; |
|
|
| |
| BrinOpcInfo *bd_info[FLEXIBLE_ARRAY_MEMBER]; |
| } BrinDesc; |
|
|
| |
| |
| |
| |
| |
| #define BRIN_PROCNUM_OPCINFO 1 |
| #define BRIN_PROCNUM_ADDVALUE 2 |
| #define BRIN_PROCNUM_CONSISTENT 3 |
| #define BRIN_PROCNUM_UNION 4 |
| #define BRIN_MANDATORY_NPROCS 4 |
| #define BRIN_PROCNUM_OPTIONS 5 |
| |
| #define BRIN_FIRST_OPTIONAL_PROCNUM 11 |
| #define BRIN_LAST_OPTIONAL_PROCNUM 15 |
|
|
| #undef BRIN_DEBUG |
|
|
| #ifdef BRIN_DEBUG |
| #define BRIN_elog(args) elog args |
| #else |
| #define BRIN_elog(args) ((void) 0) |
| #endif |
|
|
| |
| extern BrinDesc *brin_build_desc(Relation rel); |
| extern void brin_free_desc(BrinDesc *bdesc); |
| extern IndexBuildResult *brinbuild(Relation heap, Relation index, |
| struct IndexInfo *indexInfo); |
| extern void brinbuildempty(Relation index); |
| extern bool brininsert(Relation idxRel, Datum *values, bool *nulls, |
| ItemPointer heaptid, Relation heapRel, |
| IndexUniqueCheck checkUnique, |
| bool indexUnchanged, |
| struct IndexInfo *indexInfo); |
| extern IndexScanDesc brinbeginscan(Relation r, int nkeys, int norderbys); |
| extern int64 bringetbitmap(IndexScanDesc scan, TIDBitmap *tbm); |
| extern void brinrescan(IndexScanDesc scan, ScanKey scankey, int nscankeys, |
| ScanKey orderbys, int norderbys); |
| extern void brinendscan(IndexScanDesc scan); |
| extern IndexBulkDeleteResult *brinbulkdelete(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *stats, |
| IndexBulkDeleteCallback callback, |
| void *callback_state); |
| extern IndexBulkDeleteResult *brinvacuumcleanup(IndexVacuumInfo *info, |
| IndexBulkDeleteResult *stats); |
| extern bytea *brinoptions(Datum reloptions, bool validate); |
|
|
| |
| extern bool brinvalidate(Oid opclassoid); |
|
|
| #endif |
|
|