-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[python/hotfix] Fix zstd manifest decompression error on Python 3.6 #6982
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
Conversation
|
We should add java & python e2e for 3.6 too. |
👌 |
When I tried to enable e2e case for py36, some cases failed. Then I only add current case for py36 in this PR, will create another PR to fix other cases in py36 |
paimon-python/dev/run_mixed_tests.sh
Outdated
| } | ||
|
|
||
| # Function to run zstd manifest e2e test | ||
| run_zstd_manifest_test() { |
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.
You don't need to create this, by default, manifest is compressed by zstd.
|
|
||
| @Test | ||
| @EnabledIfSystemProperty(named = "run.e2e.tests", matches = "true") | ||
| @DisabledIfSystemProperty(named = "python.version", matches = "3.6") |
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.
Why disable for 3.6?
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.
Why disable for 3.6?
compatible issue in pk table for py36, will create another PR to fix it.
|
|
||
| @Test | ||
| @EnabledIfSystemProperty(named = "run.e2e.tests", matches = "true") | ||
| @DisabledIfSystemProperty(named = "python.version", matches = "3.6") |
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.
Why disable for 3.6?
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.
Why disable for 3.6?
py36 does not have pylance dependency
|
Thanks @XiaoHongbo-Hope , looks good to me! |
Purpose
Linked issue: close #xxx
Tests
API and Format
Documentation