From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/rocksdb/tools/restore_db.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 src/rocksdb/tools/restore_db.sh (limited to 'src/rocksdb/tools/restore_db.sh') diff --git a/src/rocksdb/tools/restore_db.sh b/src/rocksdb/tools/restore_db.sh new file mode 100755 index 000000000..ed89794b2 --- /dev/null +++ b/src/rocksdb/tools/restore_db.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. +# +# + +if [ "$#" -lt 2 ]; then + echo "usage: ${BASH_SOURCE[0]} " + exit 1 +fi + +backup_dir="$1" +db_dir="$2" + +echo "== Restoring latest from $backup_dir to $db_dir" +./ldb restore --db="$db_dir" --backup_dir="$backup_dir" -- cgit v1.2.3