Home
last modified time | relevance | path

Searched refs:DBLoaderCommand (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/tools/
Dldb_cmd_impl.h126 class DBLoaderCommand : public LDBCommand {
130 DBLoaderCommand(std::string& db_name, std::vector<std::string>& args);
132 DBLoaderCommand(const std::vector<std::string>& params,
Dldb_cmd.cc219 } else if (parsed_params.cmd == DBLoaderCommand::Name()) { in SelectCommand()
220 return new DBLoaderCommand(parsed_params.cmd_params, in SelectCommand()
929 const std::string DBLoaderCommand::ARG_DISABLE_WAL = "disable_wal";
930 const std::string DBLoaderCommand::ARG_BULK_LOAD = "bulk_load";
931 const std::string DBLoaderCommand::ARG_COMPACT = "compact";
933 DBLoaderCommand::DBLoaderCommand( in DBLoaderCommand() function in ROCKSDB_NAMESPACE::DBLoaderCommand
951 void DBLoaderCommand::Help(std::string& ret) { in Help()
953 ret.append(DBLoaderCommand::Name()); in Help()
961 Options DBLoaderCommand::PrepareOptionsForOpenDB() { in PrepareOptionsForOpenDB()
970 void DBLoaderCommand::DoCommand() { in DoCommand()
Dldb_tool.cc85 DBLoaderCommand::Help(ret); in PrintHelp()