| 41 | } |
| 42 | |
| 43 | extern "C" int table_callback(void *arg, int argc, char **argv, char **azColName) |
| 44 | { |
| 45 | (void) argc; (void) azColName; |
| 46 | auto tables = (vector<table> *)arg; |
| 47 | bool view = (string("view") == argv[0]); |
| 48 | table tab(argv[2], "main", !view, !view); |
| 49 | tables->push_back(tab); |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | extern "C" int column_callback(void *arg, int argc, char **argv, char **azColName) |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected