| 14428 | */ |
| 14429 | static int recoverOpenOutput(sqlite3_recover *p){ |
| 14430 | struct Func { |
| 14431 | const char *zName; |
| 14432 | int nArg; |
| 14433 | void (*xFunc)(sqlite3_context*,int,sqlite3_value **); |
| 14434 | } aFunc[] = { |
| 14435 | { "getpage", 1, recoverGetPage }, |
| 14436 | { "page_is_used", 1, recoverPageIsUsed }, |
| 14437 | { "read_i32", 2, recoverReadI32 }, |
no outgoing calls
no test coverage detected