mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
28cc5d1ed9
{{{ svn merge -r 19523:19895 https://svn.tokutek.com/tokudb/toku/tokudb.2499d }}} . git-svn-id: file:///svn/toku/tokudb@19902 c7de825b-a66e-492c-adef-691d508d4ae1
46 lines
1.4 KiB
C
46 lines
1.4 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) {}
|
|
static void dummy_set_brt(DB *db UU(), BRT brt UU()) {}
|
|
|
|
int
|
|
main(int argc, const char *const argv[]) {
|
|
toku_brt_init(dummy, dummy, dummy_set_brt);
|
|
int r = recovery_main(argc, argv);
|
|
toku_brt_destroy();
|
|
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(data_dir, log_dir, NULL, NULL, NULL, NULL, 0);
|
|
if (r!=0) {
|
|
fprintf(stderr, "Recovery failed\n");
|
|
return(1);
|
|
}
|
|
toku_malloc_cleanup();
|
|
return 0;
|
|
}
|