-
Notifications
You must be signed in to change notification settings - Fork 14
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(substrait): Update to Substrait v0.53.0 #40
Conversation
anshuldata
commented
Aug 6, 2024
•
edited
Loading
edited
- Update substrait proto dependency to v0.53.0
- go generate
- Fixed Literal methods to accommodate breaking user defined type changes (this one)
- Fixed AdvancedExtenstion interface to accomodate breaking change (this one)
- Added linter directive in files using deprecated fields. "staticcheck" doesn't seem to have config to ignore a particular check so ignoring "deprecated field" check in files which are using deprecated fields
* Update substrait proto dependency to v0.53.0 * go generate
…of in proto instead of direct value
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #40 +/- ##
=======================================
Coverage ? 46.38%
=======================================
Files ? 15
Lines ? 5553
Branches ? 0
=======================================
Hits ? 2576
Misses ? 2809
Partials ? 168 ☔ View full report in Codecov by Sentry. |
There are fields which are deprecated. I need to fix linter. Marking this PR as Draft |
* staticcheck doesn't have a ignore "check" at global level. So to fix quickly using linter directive
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.
Not a huge fan of the lint ignores for deprecations but probably can be addressed separately.