-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
refactor(parquet): Move arrow levelComparison to common #11711
refactor(parquet): Move arrow levelComparison to common #11711
Conversation
✅ Deploy Preview for meta-velox canceled.
|
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.
Not sure if it's in draft mode, but looks good to me. Let's just ensure all CI jobs are healthy (some are still running).
11c7bb3
to
1b34db3
Compare
1b34db3
to
5b37e21
Compare
I moved it to draft mode to undo the unrelated thrift refactor. The changes now are minimal. |
Alright, let me know once you work through the CI failures. |
5bc6b8d
to
e46837c
Compare
@pedroerp this is ready, CI is green. Failing job is unrelated. |
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.
Thank you @majetideepak
@bikramSingh91 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Struggling with the build system internally to unblock merge, will continue working on it tomorrow. |
@majetideepak do you mind replacing
in
This would make it conform to how its being included in other places in velox like in ApproxDistinctAggregate.cpp, BinaryFunctions.h, etc.. and also resolves the include automatically. |
@bikramSingh91 I addressed this. Thanks again for helping with the merge. |
@bikramSingh91 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@bikramSingh91 merged this pull request in e983aac. |
Summary: Follow-up PR: #11711 Both Parquet reader and writer depend on RleEncodingInternal. This currently resides in parquet/writer/arrow which introduces a dependency of the writer to the reader. No functional changes. CC: majetideepak pedroerp Pull Request resolved: #11795 Reviewed By: DanielHunte Differential Revision: D67152291 Pulled By: kgpai fbshipit-source-id: a4a1cc49718e8258cb9e170c44320e04ed3ac581
…bator#11711) Summary: Both Parquet reader and writer depend on levelComparison. This currently resides in parquet/writer/arrow which introduces a dependency of the writer to the reader. Refactor to parquet common along with renaming variables to Velox coding convention. Fixes: facebookincubator#11678 Pull Request resolved: facebookincubator#11711 Reviewed By: mbasmanova Differential Revision: D66792888 Pulled By: bikramSingh91 fbshipit-source-id: 88b2cde1eb652762dcf5abc38508fa202aa143b1
…incubator#11795) Summary: Follow-up PR: facebookincubator#11711 Both Parquet reader and writer depend on RleEncodingInternal. This currently resides in parquet/writer/arrow which introduces a dependency of the writer to the reader. No functional changes. CC: majetideepak pedroerp Pull Request resolved: facebookincubator#11795 Reviewed By: DanielHunte Differential Revision: D67152291 Pulled By: kgpai fbshipit-source-id: a4a1cc49718e8258cb9e170c44320e04ed3ac581
Both Parquet reader and writer depend on levelComparison.
This currently resides in parquet/writer/arrow which introduces a dependency of the writer to the reader.
Refactor to parquet common along with renaming variables to Velox coding convention.
Fixes: #11678