mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
357b4981c2
git-svn-id: file:///svn/toku/tokudb@43396 c7de825b-a66e-492c-adef-691d508d4ae1
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2010 Tokutek Inc. All rights reserved."
|
|
#ident "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."
|
|
|
|
/* Recover an env. The logs are in argv[1]. The new database is created in the cwd. */
|
|
|
|
// Test:
|
|
// cd ../src/tests/tmpdir
|
|
// ../../../newbrt/recover ../dir.test_log2.c.tdb
|
|
|
|
#include "includes.h"
|
|
|
|
static int recovery_main(int argc, const char *const argv[]);
|
|
|
|
static void dummy(void) {}
|
|
|
|
int
|
|
main(int argc, const char *const argv[]) {
|
|
{
|
|
int rr = toku_brt_init(dummy, dummy);
|
|
assert(rr==0);
|
|
}
|
|
int r = recovery_main(argc, argv);
|
|
{
|
|
int rr = toku_brt_destroy();
|
|
assert(rr==0);
|
|
}
|
|
return r;
|
|
}
|
|
|
|
int recovery_main (int argc, const char *const argv[]) {
|
|
const char *data_dir, *log_dir;
|
|
if (argc==3) {
|
|
data_dir = argv[1];
|
|
log_dir = argv[2];
|
|
} else if (argc==2) {
|
|
data_dir = log_dir = argv[1];
|
|
} else {
|
|
printf("Usage: %s <datadir> [ <logdir> ]\n", argv[0]);
|
|
return(1);
|
|
}
|
|
|
|
int r = tokudb_recover(NULL,
|
|
NULL_prepared_txn_callback,
|
|
NULL_keep_cachetable_callback,
|
|
NULL_logger,
|
|
data_dir, log_dir, NULL, NULL, NULL, NULL, 0);
|
|
if (r!=0) {
|
|
fprintf(stderr, "Recovery failed\n");
|
|
return(1);
|
|
}
|
|
return 0;
|
|
}
|