| 72 | } |
| 73 | |
| 74 | std::unique_ptr<Reader> createReaderWithTailLocation(MemoryPool* memoryPool, |
| 75 | std::unique_ptr<InputStream> stream, |
| 76 | uint64_t tailLocation) { |
| 77 | ReaderOptions options; |
| 78 | options.setMemoryPool(*memoryPool); |
| 79 | options.setTailLocation(tailLocation); |
| 80 | return createReader(std::move(stream), options); |
| 81 | } |
| 82 | |
| 83 | std::unique_ptr<RowReader> createRowReader(Reader* reader, const std::string& timezone = "GMT", |
| 84 | bool useTightNumericVector = false) { |
no test coverage detected