| 46 | } |
| 47 | |
| 48 | MetadataResult ShowDatabases(ShellState &state, const vector<string> &args) { |
| 49 | auto result = state.ShowDatabases(); |
| 50 | return result == SuccessState::SUCCESS ? MetadataResult::SUCCESS : MetadataResult::FAIL; |
| 51 | } |
| 52 | |
| 53 | MetadataResult SetSeparator(ShellState &state, const vector<string> &args, const char *separator_name, |
| 54 | char &separator) { |
nothing calls this directly
no test coverage detected