2008-03-12 19:40:38 +00:00
|
|
|
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
|
|
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
|
|
|
|
|
|
|
|
/* 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 "cachetable.h"
|
|
|
|
#include "key.h"
|
|
|
|
#include "log-internal.h"
|
|
|
|
#include "log_header.h"
|
|
|
|
#include "toku_assert.h"
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main (int argc, char *argv[]) {
|
|
|
|
assert(argc==2);
|
|
|
|
|
2008-03-16 20:57:27 +00:00
|
|
|
int r=tokudb_recover(".", argv[1]);
|
2008-03-14 19:14:31 +00:00
|
|
|
if (r!=0) {
|
|
|
|
fprintf(stderr, "Recovery failed\n");
|
|
|
|
exit(1);
|
2008-03-12 19:40:38 +00:00
|
|
|
}
|
2008-03-18 11:01:44 +00:00
|
|
|
toku_malloc_cleanup();
|
2008-03-12 19:40:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|