| 259 | } |
| 260 | |
| 261 | static void setBitToOne(std::uint8_t* data, std::int64_t pos) { |
| 262 | std::int64_t bytePos = 0, bitOffset = 0; |
| 263 | getBitPosition(pos, bytePos, bitOffset); |
| 264 | data[bytePos] |= ((std::uint64_t)1 << bitOffset); |
| 265 | } |
| 266 | |
| 267 | void ArrowRowBatch::appendValue(ArrowVector* vector, const Value& value, |
| 268 | bool fallbackExtensionTypes) { |