| 303 | } // namespace |
| 304 | |
| 305 | FOLLY_ALWAYS_INLINE void rowToColumnVector( |
| 306 | char** rows, |
| 307 | folly::Range<const vector_size_t*> rowNumbers, |
| 308 | RowColumn column, |
| 309 | int32_t resultOffset, |
| 310 | const VectorPtr& result) { |
| 311 | BOLT_DYNAMIC_TYPE_DISPATCH_ALL( |
| 312 | extractColumnTyped, |
| 313 | result->typeKind(), |
| 314 | rows, |
| 315 | rowNumbers, |
| 316 | rowNumbers.size(), |
| 317 | column, |
| 318 | resultOffset, |
| 319 | result); |
| 320 | } |
| 321 | |
| 322 | FOLLY_ALWAYS_INLINE void rowToColumnVector( |
| 323 | char** rows, |