|
| | chunked_orc_writer_options ()=default |
| | Default constructor. More...
|
| |
| sink_info const & | get_sink () const |
| | Returns sink info. More...
|
| |
| compression_type | get_compression () const |
| | Returns compression type. More...
|
| |
| statistics_freq | get_statistics_freq () const |
| | Returns granularity of statistics collection. More...
|
| |
| auto | get_stripe_size_bytes () const |
| | Returns maximum stripe size, in bytes. More...
|
| |
| auto | get_stripe_size_rows () const |
| | Returns maximum stripe size, in rows. More...
|
| |
| auto | get_row_index_stride () const |
| | Returns the row index stride. More...
|
| |
| auto const & | get_metadata () const |
| | Returns associated metadata. More...
|
| |
| std::map< std::string, std::string > const & | get_key_value_metadata () const |
| | Returns Key-Value footer metadata information. More...
|
| |
| std::shared_ptr< writer_compression_statistics > | get_compression_statistics () const |
| | Returns a shared pointer to the user-provided compression statistics. More...
|
| |
| bool | get_enable_dictionary_sort () const |
| | Returns whether string dictionaries should be sorted. More...
|
| |
| void | set_compression (compression_type comp) |
| | Sets compression type. More...
|
| |
| void | enable_statistics (statistics_freq val) |
| | Choose granularity of statistics collection. More...
|
| |
| void | set_stripe_size_bytes (size_t size_bytes) |
| | Sets the maximum stripe size, in bytes. More...
|
| |
| void | set_stripe_size_rows (size_type size_rows) |
| | Sets the maximum stripe size, in rows. More...
|
| |
| void | set_row_index_stride (size_type stride) |
| | Sets the row index stride. More...
|
| |
| void | metadata (table_input_metadata meta) |
| | Sets associated metadata. More...
|
| |
| void | set_key_value_metadata (std::map< std::string, std::string > metadata) |
| | Sets Key-Value footer metadata. More...
|
| |
| void | set_compression_statistics (std::shared_ptr< writer_compression_statistics > comp_stats) |
| | Sets the pointer to the output compression statistics. More...
|
| |
| void | set_enable_dictionary_sort (bool val) |
| | Sets whether string dictionaries should be sorted. More...
|
| |