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

Class AvailableQueryOptionsCmd

src/ExtCmd.actor.cpp:1002–1011  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1000REGISTER_CMD(BuggifyKnobsCmd, "buggifyknobs");
1001
1002struct AvailableQueryOptionsCmd {
1003 static const char* name;
1004 static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> ec,
1005 Reference<ExtMsgQuery> query,
1006 Reference<ExtMsgReply> reply) {
1007 unsigned int opts = EXHAUST;
1008 reply->addDocument(BSON("ok" << 1.0 << "options" << opts));
1009 return reply;
1010 }
1011};
1012REGISTER_CMD(AvailableQueryOptionsCmd, "availablequeryoptions");
1013
1014struct GetMemoryUsageCmd {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected