| 1966 | |
| 1967 | |
| 1968 | void Field::copy_from_tmp(int row_offset) |
| 1969 | { |
| 1970 | memcpy(ptr,ptr+row_offset,pack_length()); |
| 1971 | if (null_ptr) |
| 1972 | { |
| 1973 | *null_ptr= (uchar) ((null_ptr[0] & (uchar) ~(uint) null_bit) | |
| 1974 | (null_ptr[row_offset] & (uchar) null_bit)); |
| 1975 | } |
| 1976 | } |
| 1977 | |
| 1978 | |
| 1979 | bool Field::send(Protocol *protocol) |
no outgoing calls
no test coverage detected