| 188 | */ |
| 189 | |
| 190 | static inline char* |
| 191 | my_hash_key(const HASH *hash, const uchar *record, size_t *length, |
| 192 | my_bool first) |
| 193 | { |
| 194 | if (hash->get_key) |
| 195 | return (char*) (*hash->get_key)(record,length,first); |
| 196 | *length=hash->key_length; |
| 197 | return (char*) record+hash->key_offset; |
| 198 | } |
| 199 | |
| 200 | /* Calculate pos according to keys */ |
| 201 |
no outgoing calls
no test coverage detected