-
-
Notifications
You must be signed in to change notification settings - Fork 525
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
Replace min/max helpers with built-in min/max #8719
Conversation
We can use the built-in `min` and `max` functions since Go 1.21. Reference: https://go.dev/ref/spec#Min_and_max Signed-off-by: Eng Zer Jun <[email protected]>
1dfbe15
to
0515265
Compare
Thanks for the submission! I'm going to move this into a PR I own. I think that's what is causing the failed checks. |
Copied PR here: #8726 |
I think the dolt/.github/workflows/sql-regressions.yaml Lines 28 to 31 in 80ad9a2
We can see from the job log that it is trying to checkout https://github.com/dolthub/dolt/actions/runs/12662844114/job/35386960409#step:4:3 Perhaps we should also set the repository for |
According to https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#github-context, it looks like
|
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. And passed CI. Thanks for the contribution!
Thanks for the suggestions on getting CI to work. I've passed your suggestions to our team! |
@coffeegoddd DOLT
|
@coffeegoddd DOLT
|
@coffeegoddd DOLT
|
We can use the built-in
min
andmax
functions since Go 1.21.Reference: https://go.dev/ref/spec#Min_and_max