| 272 | |
| 273 | template<> |
| 274 | void OrderByKeyEncoder::encodeData(int8_t data, uint8_t* resultPtr, bool /*swapBytes*/) { |
| 275 | memcpy(resultPtr, (void*)&data, sizeof(data)); |
| 276 | resultPtr[0] = flipSign(resultPtr[0]); |
| 277 | } |
| 278 | |
| 279 | template<> |
| 280 | void OrderByKeyEncoder::encodeData(int16_t data, uint8_t* resultPtr, bool swapBytes) { |
nothing calls this directly
no test coverage detected