Skip to content

Commit

Permalink
Post-merge fixes after pull request percona#14
Browse files Browse the repository at this point in the history
  • Loading branch information
spetrunia authored and inikep committed Jan 28, 2022
1 parent 646dd38 commit b6cc090
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion storage/rocksdb/ha_rocksdb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "rdb_cf_manager.h"

#include "rocksdb/table.h"
#include "utilities/convenience.h"
#include "rocksdb/utilities/convenience.h"

/* This is here to get PRIu64, PRId64 */
#ifndef __STDC_FORMAT_MACROS
Expand Down
6 changes: 3 additions & 3 deletions storage/rocksdb/rdb_cf_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <unordered_map>

namespace rocksdb {
class ColumnFamilyOptions;
class ColumnFamilyOptions;
}

/*
Expand All @@ -31,13 +31,13 @@ namespace rocksdb {
families not found in the map.
*/
class Cf_options {
public:
public:
void Get(const std::string &cf_name, rocksdb::ColumnFamilyOptions *opts);

bool SetDefault(const std::string &default_config);
bool ParseConfigFile(const std::string &path);

private:
private:
typedef std::unordered_map<std::string, std::string> NameToConfig;

/* cf_name -> value map */
Expand Down

0 comments on commit b6cc090

Please sign in to comment.