| 421 | __assume(false); // NOT REACHED |
| 422 | } |
| 423 | StringRef column(int i) { |
| 424 | return StringRef((const uint8_t*)sqlite3_column_blob(stmt, i), sqlite3_column_bytes(stmt, i)); |
| 425 | } |
| 426 | }; |
| 427 | |
| 428 | void hexdump(FILE* fout, StringRef val) { |
no test coverage detected