mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
88d66274a1
> to toku_include/. > This is done to avoid poisoning namespace, and to be easily included by handlerton. git-svn-id: file:///svn/toku/tokudb@15579 c7de825b-a66e-492c-adef-691d508d4ae1
32 lines
848 B
C
32 lines
848 B
C
#ifndef _TDB_INTERNAL_H
|
|
#define _TDB_INTERNAL_H
|
|
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
|
|
#include "toku_list.h"
|
|
// Included by db.h, defines some internal structures. These structures are inlined in some versions of db.h
|
|
// the types DB_TXN and so forth have been defined.
|
|
|
|
struct simple_dbt {
|
|
u_int32_t len;
|
|
void *data;
|
|
};
|
|
|
|
struct __toku_db_txn_internal {
|
|
//TXNID txnid64; /* A sixty-four bit txn id. */
|
|
struct tokutxn *tokutxn;
|
|
struct __toku_lth *lth; //Hash table holding list of dictionaries this txn has touched
|
|
u_int32_t flags;
|
|
DB_TXN *child;
|
|
struct toku_list dbs_that_must_close_before_abort;
|
|
};
|
|
|
|
struct __toku_dbc_internal {
|
|
struct brt_cursor *c;
|
|
DB_TXN *txn;
|
|
struct simple_dbt skey_s,sval_s;
|
|
struct simple_dbt *skey,*sval;
|
|
};
|
|
|
|
// end of _TDB_INTERNAL_H:
|
|
#endif
|