| 1449 | } |
| 1450 | |
| 1451 | static bool ignore_column(const struct table_desc *td, const jsmntok_t *t) |
| 1452 | { |
| 1453 | /* We don't use peers.log, since it'll always be empty unless we were to |
| 1454 | * ask for it in listpeers, and it's not very useful. */ |
| 1455 | if (streq(td->name, "peers") && json_tok_streq(schemas, t, "log")) |
| 1456 | return true; |
| 1457 | return false; |
| 1458 | } |
| 1459 | |
| 1460 | static struct command_result *param_tablename(struct command *cmd, |
| 1461 | const char *name, |
no test coverage detected