mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
20 lines
966 B
C
20 lines
966 B
C
|
#ifndef TOKULOADER_H
|
||
|
#define TOKULOADER_H
|
||
|
|
||
|
/* Copyright (c) 2007, 2008, 2009 Tokutek Inc. All rights reserved.
|
||
|
*
|
||
|
* The technology is licensed by the Massachusetts Institute of Technology,
|
||
|
* Rutgers State University of New Jersey, and the Research Foundation of
|
||
|
* State University of New York at Stony Brook under United States of America
|
||
|
* Serial No. 11/760379 and to the patents and/or patent applications resulting from it.
|
||
|
*/
|
||
|
|
||
|
int toku_loader_create_loader(DB_ENV *env, DB_TXN *txn, DB_LOADER **blp, DB *src_db, int N, DB *dbs[N], uint32_t flags[N], uint32_t dbt_flags[N], void *extra);
|
||
|
int toku_loader_set_duplicate_callback(DB_LOADER *loader, void (*duplicate)(DB *db, int i, DBT *key, DBT *val));
|
||
|
int toku_loader_set_poll_function(DB_LOADER *loader, int (*poll_func)(void *extra, float progress));
|
||
|
int toku_loader_put(DB_LOADER *loader, DBT *key, DBT *val);
|
||
|
int toku_loader_close(DB_LOADER *loader);
|
||
|
int toku_loader_abort(DB_LOADER *loader);
|
||
|
|
||
|
#endif
|