Hooray for "compatibility"
| 744 | |
| 745 | // Hooray for "compatibility" |
| 746 | struct 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 | }; |
| 754 | REGISTER_CMD(DeleteIndexesCmd, "deleteindexes"); |
| 755 | |
| 756 | ACTOR static Future<Reference<ExtMsgReply>> doCreateIndexes(Reference<ExtConnection> ec, |
nothing calls this directly
no outgoing calls
no test coverage detected