mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
178820a688
2216a is no longer valid. Refs #2216. [t:2216]. {{{ svn merge -r17301:18179 https://svn.tokutek.com/tokudb/toku/tokudb.2216a/src/tests }}} git-svn-id: file:///svn/toku/tokudb@18181 c7de825b-a66e-492c-adef-691d508d4ae1
21 lines
662 B
C
21 lines
662 B
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ifndef BRTLOADER_H
|
|
#define BRTLOADER_H
|
|
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
|
|
typedef struct brtloader_s *BRTLOADER;
|
|
int toku_brt_loader_open (BRTLOADER *bl,
|
|
generate_row_for_put_func g,
|
|
DB *src_db,
|
|
int N,
|
|
DB *dbs[/*N*/],
|
|
const struct descriptor *descriptors[/*N*/],
|
|
const char * new_fnames_in_env[/*N*/],
|
|
const char * new_fnames_in_cwd[/*N*/],
|
|
brt_compare_func bt_compare_functions[/*N*/],
|
|
const char *temp_file_template);
|
|
int toku_brt_loader_put (BRTLOADER bl, DBT *key, DBT *val);
|
|
int toku_brt_loader_close (BRTLOADER bl);
|
|
|
|
#endif // BRTLOADER_H
|