|
| orc_reader_options ()=default |
| Default constructor. More...
|
|
source_info const & | get_source () const |
| Returns source info. More...
|
|
auto const & | get_columns () const |
| Returns names of the columns to read, if set. More...
|
|
auto const & | get_stripes () const |
| Returns vector of vectors, stripes to read for each input source. More...
|
|
int64_t | get_skip_rows () const |
| Returns number of rows to skip from the start. More...
|
|
std::optional< int64_t > const & | get_num_rows () const |
| Returns number of row to read. More...
|
|
bool | is_enabled_use_index () const |
| Whether to use row index to speed-up reading. More...
|
|
bool | is_enabled_use_np_dtypes () const |
| Whether to use numpy-compatible dtypes. More...
|
|
data_type | get_timestamp_type () const |
| Returns timestamp type to which timestamp column will be cast. More...
|
|
std::vector< std::string > const & | get_decimal128_columns () const |
| Returns fully qualified names of columns that should be read as 128-bit Decimal. More...
|
|
bool | get_ignore_timezone_in_stripe_footer () const |
| Returns whether to ignore writer timezone in the stripe footer. More...
|
|
void | set_columns (std::vector< std::string > col_names) |
| Sets names of the column to read. More...
|
|
void | set_stripes (std::vector< std::vector< size_type >> stripes) |
| Sets list of stripes to read for each input source. More...
|
|
void | set_skip_rows (int64_t rows) |
| Sets number of rows to skip from the start. More...
|
|
void | set_num_rows (int64_t nrows) |
| Sets number of row to read. More...
|
|
void | enable_use_index (bool use) |
| Enable/Disable use of row index to speed-up reading. More...
|
|
void | enable_use_np_dtypes (bool use) |
| Enable/Disable use of numpy-compatible dtypes. More...
|
|
void | set_timestamp_type (data_type type) |
| Sets timestamp type to which timestamp column will be cast. More...
|
|
void | set_decimal128_columns (std::vector< std::string > val) |
| Set columns that should be read as 128-bit Decimal. More...
|
|