| 277 | } |
| 278 | |
| 279 | inline int8_t GetBoolField(const int8_t* row, uint32_t offset) { |
| 280 | int8_t value = *(row + offset); |
| 281 | return value; |
| 282 | } |
| 283 | |
| 284 | inline int16_t GetInt16Field(const int8_t* row, uint32_t offset) { |
| 285 | return *(reinterpret_cast<const int16_t*>(row + offset)); |