-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add tree string #95
Add tree string #95
Conversation
hey @MrPowers, this is ready for review. I based the output on how pyspark prints schemas with the Some thoughts for additional features
|
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.
LGTM
This fix is super helpful! Any chance it can get merged? Happy to try resolving the merge conflicts if you need help. |
thanks for putting this back on my radar! I'll work on resolving the merge conflicts |
@fpgmaas @SemyonSinchenko could one of y'all please review the changes after my recent updates? For the merge conflicts, most of the differences were formatting/line length related and I took the incoming version from main in those instances. I also experienced some pytest failures after the merge that I have addressed in the subsequent commits.
Let me know if anything should be changed! |
chispa/schema_comparer.py
Outdated
@@ -3,9 +3,11 @@ | |||
import typing | |||
from itertools import zip_longest | |||
|
|||
import six |
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.
I don't think we need six; We can use itertools.zip_longest from the standard library.
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.
updated!
@jeffbrennan build is failing due to formatting issues. Could you run the pre-commit hooks locally? Sorry, we should reflect this in |
@fpgmaas passing locally after my recent changes |
hi @fpgmaas, pinging you again to see if we can get this merged |
addresses #88
See comment below