| 256 | } |
| 257 | |
| 258 | void db_bind_talarr(struct db_stmt *stmt, const u8 *arr) |
| 259 | { |
| 260 | if (!arr) |
| 261 | db_bind_null(stmt); |
| 262 | else |
| 263 | db_bind_blob(stmt, arr, tal_bytelen(arr)); |
| 264 | } |
| 265 | |
| 266 | static size_t db_column_bytes(struct db_stmt *stmt, int col) |
| 267 | { |
no test coverage detected