-
Notifications
You must be signed in to change notification settings - Fork 28.3k
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
[SPARK-28844][SQL] Fix typo in SQLConf FILE_COMRESSION_FACTOR #25538
Conversation
@triplesheep Thanks for the fix. Could you create a jira ticket in https://issues.apache.org/jira/browse/SPARK and change the title as |
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.
This should be fine as it's not a user-facing change, it's private/internal.
@gengliangwang Done and the issue is SPARK-28844. Thanks for reviewing :) |
cc @srowen @triplesheep @dongjoon-hyun could someone allow me to start the jenkins test ? |
ok to test |
Sorry for being late, @triplesheep . |
Since this typo was introduced since 2.3, cc @kiszk , too. |
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.
+1, LGTM. (Pending Jenkins testing).
Thank you for your first contribution, @triplesheep .
Test build #109552 has finished for PR 25538 at commit
|
I tested this manually. Merged to |
Fix minor typo in SQLConf. `FILE_COMRESSION_FACTOR` -> `FILE_COMPRESSION_FACTOR` Make conf more understandable. No. (`spark.sql.sources.fileCompressionFactor` is unchanged.) Pass the Jenkins with the existing tests. Closes #25538 from triplesheep/TYPO-FIX. Authored-by: triplesheep <triplesheep0419@gmail.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com> (cherry picked from commit 48578a4) Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
Fix minor typo in SQLConf. `FILE_COMRESSION_FACTOR` -> `FILE_COMPRESSION_FACTOR` Make conf more understandable. No. (`spark.sql.sources.fileCompressionFactor` is unchanged.) Pass the Jenkins with the existing tests. Closes #25538 from triplesheep/TYPO-FIX. Authored-by: triplesheep <triplesheep0419@gmail.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com> (cherry picked from commit 48578a4) Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
Hi, @triplesheep . What is your JIRA ID? |
Fix minor typo in SQLConf. `FILE_COMRESSION_FACTOR` -> `FILE_COMPRESSION_FACTOR` Make conf more understandable. No. (`spark.sql.sources.fileCompressionFactor` is unchanged.) Pass the Jenkins with the existing tests. Closes apache#25538 from triplesheep/TYPO-FIX. Authored-by: triplesheep <triplesheep0419@gmail.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com> (cherry picked from commit 48578a4) Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
Fix minor typo in SQLConf. `FILE_COMRESSION_FACTOR` -> `FILE_COMPRESSION_FACTOR` Make conf more understandable. No. (`spark.sql.sources.fileCompressionFactor` is unchanged.) Pass the Jenkins with the existing tests. Closes apache#25538 from triplesheep/TYPO-FIX. Authored-by: triplesheep <triplesheep0419@gmail.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com> (cherry picked from commit 48578a4) Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
What changes were proposed in this pull request?
Fix minor typo in SQLConf.
FILE_COMRESSION_FACTOR
->FILE_COMPRESSION_FACTOR
Why are the changes needed?
Make conf more understandable.
Does this PR introduce any user-facing change?
No. (
spark.sql.sources.fileCompressionFactor
is unchanged.)How was this patch tested?
Pass the Jenkins with the existing tests.