mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-29 00:34:03 +00:00
7b24dec25d
Summary: Same as title Pull Request resolved: https://github.com/facebook/rocksdb/pull/12164 Reviewed By: hx235 Differential Revision: D52302234 Pulled By: akankshamahajan15 fbshipit-source-id: d4724fc944c773242788f5a47d1c7eadbbc5a522
18 lines
692 B
C++
18 lines
692 B
C++
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
//
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
//
|
|
#include "rocksdb/table_properties.h"
|
|
#include "rocksdb/utilities/table_properties_collectors.h"
|
|
|
|
#ifndef ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
|
|
#define ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
|
|
|
|
struct TablePropertiesCollectorFactoriesJniWrapper {
|
|
std::shared_ptr<rocksdb::TablePropertiesCollectorFactory>
|
|
table_properties_collector_factories;
|
|
};
|
|
#endif // ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
|