| 4309 | } |
| 4310 | |
| 4311 | static inline void consume_previous_query(cdb2_hndl_tp *hndl) |
| 4312 | { |
| 4313 | while (cdb2_next_record_int(hndl, 0) == CDB2_OK) |
| 4314 | ; |
| 4315 | |
| 4316 | clear_responses(hndl); |
| 4317 | hndl->rows_read = 0; |
| 4318 | } |
| 4319 | |
| 4320 | #define GOTO_RETRY_QUERIES() \ |
| 4321 | do { \ |
no test coverage detected