-
Notifications
You must be signed in to change notification settings - Fork 209
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
Support CreateTableTransaction for HiveCatalog #683
Support CreateTableTransaction for HiveCatalog #683
Conversation
…on_for_hive_and_sql
@pytest.mark.parametrize("format_version", [1, 2]) | ||
@pytest.mark.parametrize('catalog', [pytest.lazy_fixture('session_catalog_hive'), pytest.lazy_fixture('session_catalog')]) |
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.
We're mixing double and single quotes 😱 Shouldn't Ruff fix this?
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.
Our current setting is
[format]
quote-style = "preserve"
which leave quotes unchanged.
I changed it to "double" and found that 39 files need to be re-formatted. I've created a separete PR to give it a try: #781
I will re-visit this issue tomorrow if the test fails :)
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.
Now #781 is in, we need to rebase every PR anyway :D
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.
@HonahX This looks good, thanks for working on this 👍
# Conflicts: # pyiceberg/catalog/hive.py
Follow-up of #498