2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2015-03-11 18:31:02 +01:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
2017-04-28 02:50:56 +02:00
|
|
|
// This source code is also licensed under the GPLv2 license found in the
|
|
|
|
// COPYING file in the root directory of this source tree.
|
2015-03-11 18:31:02 +01:00
|
|
|
//
|
|
|
|
// Copyright (c) 2012 Facebook.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2015-07-15 23:51:51 +02:00
|
|
|
#include "rocksdb/convenience.h"
|
2015-03-11 18:31:02 +01:00
|
|
|
|
|
|
|
#include "db/db_impl.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
2015-05-06 01:54:47 +02:00
|
|
|
void CancelAllBackgroundWork(DB* db, bool wait) {
|
2017-04-24 22:38:29 +02:00
|
|
|
(dynamic_cast<DBImpl*>(db->GetRootDB()))->CancelAllBackgroundWork(wait);
|
2015-03-11 18:31:02 +01:00
|
|
|
}
|
2015-12-29 22:22:13 +01:00
|
|
|
|
|
|
|
Status DeleteFilesInRange(DB* db, ColumnFamilyHandle* column_family,
|
|
|
|
const Slice* begin, const Slice* end) {
|
2017-04-27 23:15:30 +02:00
|
|
|
return (dynamic_cast<DBImpl*>(db->GetRootDB()))
|
2015-12-29 22:22:13 +01:00
|
|
|
->DeleteFilesInRange(column_family, begin, end);
|
|
|
|
}
|
|
|
|
|
2015-03-11 18:31:02 +01:00
|
|
|
} // namespace rocksdb
|
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|