| 562 | |
| 563 | template<LogicalTypeID DT> |
| 564 | void ArrowRowBatch::templateCopyNullValue(ArrowVector* vector, std::int64_t pos) { |
| 565 | // TODO(Guodong): make this as a function. |
| 566 | setBitToZero(vector->validity.data(), pos); |
| 567 | vector->numNulls++; |
| 568 | } |
| 569 | |
| 570 | template<> |
| 571 | void ArrowRowBatch::templateCopyNullValue<LogicalTypeID::STRING>(ArrowVector* vector, |
nothing calls this directly
no test coverage detected