| 800 | static void (*report_costs)(void) = REPORT_COSTS; |
| 801 | |
| 802 | int list_tables() |
| 803 | { |
| 804 | int start_time_ms, run_time_ms; |
| 805 | const char *sql = "SELECT tablename FROM comdb2_tables order by tablename"; |
| 806 | return run_statement(sql, 0, NULL, &start_time_ms, &run_time_ms); |
| 807 | } |
| 808 | |
| 809 | int list_systables() |
| 810 | { |
no test coverage detected