| 1589 | */ |
| 1590 | |
| 1591 | bool JOIN_CACHE::put_record() |
| 1592 | { |
| 1593 | bool is_full; |
| 1594 | uchar *link= 0; |
| 1595 | DBUG_ASSERT(!for_explain_only); |
| 1596 | if (prev_cache) |
| 1597 | link= prev_cache->get_curr_rec_link(); |
| 1598 | write_record_data(link, &is_full); |
| 1599 | return is_full; |
| 1600 | } |
| 1601 | |
| 1602 | |
| 1603 | /* |
nothing calls this directly
no test coverage detected