| 264 | } |
| 265 | |
| 266 | static size_t db_column_bytes(struct db_stmt *stmt, int col) |
| 267 | { |
| 268 | if (db_column_is_null(stmt, col)) |
| 269 | return 0; |
| 270 | return stmt->db->config->column_bytes_fn(stmt, col); |
| 271 | } |
| 272 | |
| 273 | static const void *db_column_blob(struct db_stmt *stmt, int col) |
| 274 | { |
no test coverage detected