| 67 | }; |
| 68 | |
| 69 | static void resetOutputIfNecessary(const StorageInfoLocalState* localState, |
| 70 | DataChunk& outputChunk) { |
| 71 | if (outputChunk.state->getSelVector().getSelSize() == DEFAULT_VECTOR_CAPACITY) { |
| 72 | localState->dataChunkCollection->append(outputChunk); |
| 73 | outputChunk.resetAuxiliaryBuffer(); |
| 74 | outputChunk.state->getSelVectorUnsafe().setSelSize(0); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | static void appendStorageInfoForChunkData(StorageInfoLocalState* localState, DataChunk& outputChunk, |
| 79 | StorageInfoOutputData& outputData, const Column& column, const ColumnChunkData& chunkData, |
no test coverage detected