| 41 | } |
| 42 | |
| 43 | static std::unique_ptr<Reader> createReader(MemoryPool* memoryPool, |
| 44 | std::unique_ptr<InputStream> stream) { |
| 45 | ReaderOptions options; |
| 46 | options.setMemoryPool(*memoryPool); |
| 47 | return createReader(std::move(stream), options); |
| 48 | } |
| 49 | |
| 50 | static void checkDictionaryEncoding(StringVectorBatch* batch) { |
| 51 | EXPECT_TRUE(batch->isEncoded); |
no outgoing calls
no test coverage detected