| 906 | } |
| 907 | |
| 908 | void move_to(ha_rows row_number) |
| 909 | { |
| 910 | if (io_cache) |
| 911 | { |
| 912 | rownum= row_number; |
| 913 | } |
| 914 | else |
| 915 | { |
| 916 | cache_pos= MY_MIN(cache_end, cache_start + row_number * ref_length); |
| 917 | DBUG_ASSERT(cache_pos <= cache_end); |
| 918 | } |
| 919 | } |
| 920 | |
| 921 | protected: |
| 922 | bool at_eof() |
no outgoing calls
no test coverage detected