Local helpers once you have column number */
| 23 | |
| 24 | /* Local helpers once you have column number */ |
| 25 | static bool db_column_is_null(struct db_stmt *stmt, int col) |
| 26 | { |
| 27 | return stmt->db->config->column_is_null_fn(stmt, col); |
| 28 | } |
| 29 | |
| 30 | /* Returns true (and warns) if it's nul */ |
| 31 | static bool db_column_null_warn(struct db_stmt *stmt, const char *colname, |
no outgoing calls
no test coverage detected