Skip to content

Commit

Permalink
put docstring on the setter
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Dec 13, 2024
1 parent e7aa603 commit ae46752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/properties.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ class PARQUET_EXPORT ReaderProperties {
// Set the default read size to read the footer from a file. For high latency
// file systems and files with large metadata (>64KB) this can increase performance
// by reducing the number of round-trips to retrieve the entire file metadata.
size_t footer_read_size() const { return footer_read_size_; }
void set_footer_read_size(size_t size) { footer_read_size_ = size; }
size_t footer_read_size() const { return footer_read_size_; }

private:
MemoryPool* pool_;
Expand Down

0 comments on commit ae46752

Please sign in to comment.