-
Notifications
You must be signed in to change notification settings - Fork 393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added aggregate & conditonal readers for parquet #172
Added aggregate & conditonal readers for parquet #172
Conversation
Codecov Report
@@ Coverage Diff @@
## master #172 +/- ##
==========================================
- Coverage 86.3% 86.29% -0.02%
==========================================
Files 305 305
Lines 9963 9967 +4
Branches 339 548 +209
==========================================
+ Hits 8599 8601 +2
- Misses 1364 1366 +2
Continue to review full report at Codecov.
|
@ajayborra please add some tests. thanks. |
readPath: Option[String], | ||
key: T => String, | ||
val conditionalParams: ConditionalParams[T] | ||
)extends ParquetProductReader[T](readPath, key) with ConditionalDataReader[T] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please fix scalastyle warnings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tovbinm Seems like we have are going to have similar logic for testing these readers. Will look at the possibility of extracting these as Table Tests and update the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any tests included? Why not?
@ajayborra Rachel is working on adding a common spec for all the readers, so dont sweat it too much ;) #83 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm (tests are flaky, I am working on fixing those)
Related issues
#56
Describe the proposed solution
Added Aggregate & Conditional Reader API for parquet format