fatemehp commented on code in PR #14603:
URL: https://github.com/apache/arrow/pull/14603#discussion_r1030944057
##########
cpp/src/parquet/column_reader.cc:
##########
@@ -253,6 +253,13 @@ class SerializedPageReader : public PageReader {
void set_max_page_header_size(uint32_t size) override {
max_page_header_size_ = size; }
+ bool set_skip_page_callback(
+ std::function<bool(const format::PageHeader&)> skip_page_callback)
override {
+ skip_page_callback_ = skip_page_callback;
+ has_skip_page_callback_ = true;
Review Comment:
Done
##########
cpp/src/parquet/column_reader.h:
##########
@@ -28,6 +28,7 @@
#include "parquet/properties.h"
#include "parquet/schema.h"
#include "parquet/types.h"
+#include "parquet/thrift_internal.h" // IWYU pragma: keep
Review Comment:
Done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]