]> granicus.if.org Git - postgresql/blobdiff - src/include/access/brin_internal.h
Allow index AMs to cache data across aminsert calls within a SQL command.
[postgresql] / src / include / access / brin_internal.h
index 40312604f8dc1f7de5594749b09f0db59a87969e..abe887788be39508f4b5081216ddcbb6f7b1fdff 100644 (file)
@@ -89,7 +89,8 @@ extern IndexBuildResult *brinbuild(Relation heap, Relation index,
 extern void brinbuildempty(Relation index);
 extern bool brininsert(Relation idxRel, Datum *values, bool *nulls,
                   ItemPointer heaptid, Relation heapRel,
-                  IndexUniqueCheck checkUnique);
+                  IndexUniqueCheck checkUnique,
+                  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,