| 483 | } |
| 484 | |
| 485 | void FactorizedTable::copyVectorToColumn(const ValueVector& vector, |
| 486 | const BlockAppendingInfo& blockAppendInfo, uint64_t numAppendedTuples, ft_col_idx_t colIdx) { |
| 487 | if (tableSchema.getColumn(colIdx)->isFlat()) { |
| 488 | copyVectorToFlatColumn(vector, blockAppendInfo, numAppendedTuples, colIdx); |
| 489 | } else { |
| 490 | copyVectorToUnflatColumn(vector, blockAppendInfo, colIdx); |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | overflow_value_t FactorizedTable::appendVectorToUnflatTupleBlocks(const ValueVector& vector, |
| 495 | ft_col_idx_t colIdx) { |
no test coverage detected