| 132 | } |
| 133 | |
| 134 | void db_bind_node_id(struct db_stmt *stmt, int pos, const struct node_id *id) |
| 135 | { |
| 136 | db_bind_blob(stmt, pos, id->k, sizeof(id->k)); |
| 137 | } |
| 138 | |
| 139 | void db_bind_node_id_arr(struct db_stmt *stmt, int col, |
| 140 | const struct node_id *ids) |
no test coverage detected