| 34 | using BooleanVectorBatch = ByteVectorBatch; |
| 35 | |
| 36 | static std::unique_ptr<Reader> createReader(MemoryPool& memoryPool, |
| 37 | std::unique_ptr<InputStream> stream) { |
| 38 | ReaderOptions options; |
| 39 | options.setMemoryPool(memoryPool); |
| 40 | return createReader(std::move(stream), options); |
| 41 | } |
| 42 | |
| 43 | TEST(ConvertColumnReader, betweenNumericWithoutOverflows) { |
| 44 | constexpr int DEFAULT_MEM_STREAM_SIZE = 10 * 1024 * 1024; |