| 413 | } |
| 414 | |
| 415 | static char *generic_generator_no_systables(const char *text, const int state) |
| 416 | { |
| 417 | char sql[256]; |
| 418 | snprintf(sql, sizeof(sql), |
| 419 | "SELECT DISTINCT candidate as c FROM comdb2_completion('%s') " |
| 420 | "where c not in (select name from comdb2_systables)", |
| 421 | text); |
| 422 | |
| 423 | return db_generator(state, sql); |
| 424 | } |
| 425 | |
| 426 | static char *generic_generator(const char *text, const int state) |
| 427 | { |
nothing calls this directly
no test coverage detected