summaryrefslogtreecommitdiff
path: root/src/include/extern.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/extern.h')
-rw-r--r--src/include/extern.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/extern.h b/src/include/extern.h
index 8fdc0d53a89..bb39305c8f7 100644
--- a/src/include/extern.h
+++ b/src/include/extern.h
@@ -223,6 +223,23 @@ extern int __wt_block_write_off(WT_SESSION_IMPL *session,
uint32_t *sizep,
uint32_t *cksump,
int force_extend);
+extern int __wt_bloom_create( WT_SESSION_IMPL *session,
+ const char *uri,
+ const char *config,
+ uint64_t count,
+ uint32_t factor,
+ uint32_t k,
+ WT_BLOOM **bloomp);
+extern int __wt_bloom_open(WT_SESSION_IMPL *session,
+ const char *uri,
+ uint32_t factor,
+ uint32_t k,
+ WT_BLOOM **bloomp);
+extern int __wt_bloom_insert(WT_BLOOM *bloom, WT_ITEM *key);
+extern int __wt_bloom_finalize(WT_BLOOM *bloom);
+extern int __wt_bloom_get(WT_BLOOM *bloom, WT_ITEM *key);
+extern int __wt_bloom_close(WT_BLOOM *bloom);
+extern int __wt_bloom_drop(WT_BLOOM *bloom, const char *config);
extern int __wt_bulk_init(WT_CURSOR_BULK *cbulk);
extern int __wt_bulk_insert(WT_CURSOR_BULK *cbulk);
extern int __wt_bulk_end(WT_CURSOR_BULK *cbulk);