-
Notifications
You must be signed in to change notification settings - Fork 5.5k
fix(native): Advance Velox, Fix FunctionMetadataTest.Greatest #26727
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
Summary:
Update Greatest Function Tests
* Added two new function signatures to the `Greatest.json` file:
* `time, time -> time`
* `time, time with tz -> time with tz`
Differential Revision: D88100122
Reviewer's guide (collapsed on small PRs)Reviewer's GuideExtends the FunctionMetadataTest coverage for the File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey there - I've reviewed your changes - here's some feedback:
- Consider replacing the hard-coded expected count
15intestFunction("greatest", ...)with a value derived from theGreatest.jsoncontents (or a shared constant) to avoid having to manually update the test whenever new signatures are added.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider replacing the hard-coded expected count `15` in `testFunction("greatest", ...)` with a value derived from the `Greatest.json` contents (or a shared constant) to avoid having to manually update the test whenever new signatures are added.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
aditi-pandit
left a comment
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.
Thanks @pratikpugalia
pramodsatya
left a comment
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.
Thanks @pratikpugalia. The test is still failing in the CI, could you please fix it?
Also, please change the commit message naming to follow conventional commit format.
cc: @amitkdutta
|
@pramodsatya @aditi-pandit @amitkdutta Changed description and fixed the test by advancing velox but seeing some unrelated maven failures! |
aditi-pandit
left a comment
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.
Thanks @pratikpugalia
pramodsatya
left a comment
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.
Thanks @pratikpugalia.
Summary:
Advance Velox, Update Failing Test
Greatest.jsonfile:time, time -> timetime, time with tz -> time with tzDifferential Revision: D88100122