| 31 | #include "bolt/dwio/orc/reader/OrcReader.h" |
| 32 | namespace bytedance::bolt::orc::reader { |
| 33 | std::unique_ptr<dwio::common::Reader> OrcReaderFactory::createReader( |
| 34 | std::unique_ptr<dwio::common::BufferedInput> input, |
| 35 | const dwio::common::ReaderOptions& options) { |
| 36 | return bolt::dwrf::DwrfReader::create(std::move(input), options); |
| 37 | } |
| 38 | } // namespace bytedance::bolt::orc::reader |