| 232 | } |
| 233 | |
| 234 | void db_bind_talarr(struct db_stmt *stmt, int col, const u8 *arr) |
| 235 | { |
| 236 | if (!arr) |
| 237 | db_bind_null(stmt, col); |
| 238 | else |
| 239 | db_bind_blob(stmt, col, arr, tal_bytelen(arr)); |
| 240 | } |
| 241 | |
| 242 | static size_t db_column_bytes(struct db_stmt *stmt, int col) |
| 243 | { |
no test coverage detected