MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / DeleteIndexesCmd

Class DeleteIndexesCmd

src/ExtCmd.actor.cpp:746–753  ·  view source on GitHub ↗

Hooray for "compatibility"

Source from the content-addressed store, hash-verified

744
745// Hooray for "compatibility"
746struct DeleteIndexesCmd {
747 static const char* name;
748 static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> nmc,
749 Reference<ExtMsgQuery> query,
750 Reference<ExtMsgReply> reply) {
751 return doDropIndexesActor(nmc, query, reply);
752 }
753};
754REGISTER_CMD(DeleteIndexesCmd, "deleteindexes");
755
756ACTOR static Future<Reference<ExtMsgReply>> doCreateIndexes(Reference<ExtConnection> ec,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected