| 4994 | } |
| 4995 | |
| 4996 | static void SystemCommandOnCluster(String & ret, const String & desc, const SystemCommand & cmd, const ExprSchemaTable & est) |
| 4997 | { |
| 4998 | ret += desc; |
| 4999 | if (cmd.has_cluster()) |
| 5000 | { |
| 5001 | ClusterToString(ret, true, cmd.cluster()); |
| 5002 | } |
| 5003 | ret += " "; |
| 5004 | ExprSchemaTableToString(ret, est); |
| 5005 | } |
| 5006 | |
| 5007 | CONV_FN(SystemCommand, cmd) |
| 5008 | { |
no test coverage detected