| 63 | } |
| 64 | |
| 65 | void ColumnVectorBatch::decodeDictionary() { |
| 66 | if (dictionaryDecoded) return; |
| 67 | |
| 68 | decodeDictionaryImpl(); |
| 69 | dictionaryDecoded = true; |
| 70 | } |
| 71 | |
| 72 | StringDictionary::StringDictionary(MemoryPool& pool) |
| 73 | : dictionaryBlob(pool), dictionaryOffset(pool) { |
no outgoing calls