| 149 | }; |
| 150 | |
| 151 | DictionaryMemoTable::DictionaryMemoTable(MemoryPool* pool, |
| 152 | const std::shared_ptr<DataType>& type) |
| 153 | : impl_(new DictionaryMemoTableImpl(pool, type)) {} |
| 154 | |
| 155 | DictionaryMemoTable::DictionaryMemoTable(MemoryPool* pool, |
| 156 | const std::shared_ptr<Array>& dictionary) |
nothing calls this directly
no test coverage detected