2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2015-03-11 17:31:02 +00: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 00:50:56 +00: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 17:31:02 +00: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 21:51:51 +00:00
|
|
|
#include "rocksdb/convenience.h"
|
2015-03-11 17:31:02 +00:00
|
|
|
|
|
|
|
#include "db/db_impl.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
2015-05-05 23:54:47 +00:00
|
|
|
void CancelAllBackgroundWork(DB* db, bool wait) {
|
2017-04-24 20:38:29 +00:00
|
|
|
(dynamic_cast<DBImpl*>(db->GetRootDB()))->CancelAllBackgroundWork(wait);
|
2015-03-11 17:31:02 +00:00
|
|
|
}
|
2015-12-29 21:22:13 +00:00
|
|
|
|
|
|
|
Status DeleteFilesInRange(DB* db, ColumnFamilyHandle* column_family,
|
|
|
|
const Slice* begin, const Slice* end) {
|
2017-04-27 21:15:30 +00:00
|
|
|
return (dynamic_cast<DBImpl*>(db->GetRootDB()))
|
2015-12-29 21:22:13 +00:00
|
|
|
->DeleteFilesInRange(column_family, begin, end);
|
|
|
|
}
|
|
|
|
|
2015-03-11 17:31:02 +00:00
|
|
|
} // namespace rocksdb
|
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|