Send the first row, still honoring offset_limit_cnt */
| 63 | |
| 64 | /* Send the first row, still honoring offset_limit_cnt */ |
| 65 | void send_first_row() |
| 66 | { |
| 67 | /* Guard against overflow */ |
| 68 | if ((select_limit_cnt= offset_limit_cnt +1 ) == 0) |
| 69 | select_limit_cnt= offset_limit_cnt; |
| 70 | // with_ties= false; Remove // on merge to 10.6 |
| 71 | } |
| 72 | |
| 73 | bool is_unlimited() const |
| 74 | { return select_limit_cnt == HA_POS_ERROR; } |