-
Notifications
You must be signed in to change notification settings - Fork 312
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
feat(java-client): add maven-thrift-plugin #1997
Conversation
ad4711f
to
0e121c9
Compare
@@ -48,21 +48,4 @@ if ! $thrift -version | grep "0.11.0" ; then | |||
exit 1 | |||
fi | |||
|
|||
TMP_DIR=./gen-java |
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.
It seems thrift
will not be used any where in java-client, can we remove this file entirely?
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.
thrift will be used when mvn compile
or mvn test
. If i remove the file , if i remove the file https://github.com/apache/incubator-pegasus/blob/master/.github/workflows/test_python-client.yml#L68 will be add in to github action
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.
OK, let's keep it in current step. We can do that in next patches.
@@ -48,21 +48,4 @@ if ! $thrift -version | grep "0.11.0" ; then | |||
exit 1 | |||
fi | |||
|
|||
TMP_DIR=./gen-java |
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.
OK, let's keep it in current step. We can do that in next patches.
… instead of script (apache#1997) apache#1664 Add thrift-maven-plugin by referencing following links: - https://issues.apache.org/jira/browse/THRIFT-1536 - apache/parquet-java#600
What problem does this PR solve?
fix #1664
ref: https://issues.apache.org/jira/browse/THRIFT-1536
ref: apache/parquet-java#600
What is changed and how does it work?
Checklist
Tests
Code changes
Side effects
Related changes