| 97 | } |
| 98 | |
| 99 | void EncodedStringVectorBatch::decodeDictionaryImpl() { |
| 100 | size_t n = index.size(); |
| 101 | resize(n); |
| 102 | |
| 103 | for (size_t i = 0; i < n; ++i) { |
| 104 | if (!hasNulls || notNull[i]) { |
| 105 | dictionary->getValueByIndex(index[i], data[i], length[i]); |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | StringVectorBatch::StringVectorBatch(uint64_t capacity, MemoryPool& pool) |
| 111 | : ColumnVectorBatch(capacity, pool), |
nothing calls this directly
no test coverage detected