ClickHouse/src/Processors/Formats/Impl/ORCBlockInputFormat.h

41 lines
772 B
C++
Raw Normal View History

2019-08-21 14:19:47 +00:00
#pragma once
#include "config_formats.h"
2020-05-03 23:19:56 +00:00
#if USE_ORC
2019-08-21 14:19:47 +00:00
#include <Processors/Formats/IInputFormat.h>
2020-05-03 23:19:56 +00:00
namespace arrow::adapters::orc { class ORCFileReader; }
2019-08-21 14:19:47 +00:00
namespace DB
{
2020-05-05 12:56:54 +00:00
class ORCBlockInputFormat : public IInputFormat
2019-08-21 14:19:47 +00:00
{
public:
ORCBlockInputFormat(ReadBuffer & in_, Block header_);
2019-08-21 14:19:47 +00:00
String getName() const override { return "ORCBlockInputFormat"; }
void resetParser() override;
2019-08-21 14:19:47 +00:00
protected:
Chunk generate() override;
private:
// TODO: check that this class implements every part of its parent
std::unique_ptr<arrow::adapters::orc::ORCFileReader> file_reader;
int stripe_total = 0;
int stripe_current = 0;
// indices of columns to read from ORC file
std::vector<int> include_indices;
void prepareReader();
2019-08-21 14:19:47 +00:00
};
}
#endif