Skip to content
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

[Build-deps]: Bump github.com/dolthub/go-mysql-server from 0.14.0 to 0.18.0 #4555

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps github.com/dolthub/go-mysql-server from 0.14.0 to 0.18.0.

Release notes

Sourced from github.com/dolthub/go-mysql-server's releases.

Q1 2024 Release

This is our quarterly roll-up release that contains many bug fixes, features, and performance improvements. Reminder that interfaces are not guaranteed to settle until 1.0.

This release contains a breaking change for setting up an in-memory database server, e.g. in testing. The in-memory database now requires its own session implementation, and the server must be supplied with a compatible session builder to prevent panics. See the _examples directory for an example.

Merged PRs

go-mysql-server

  • 2350: [planbuilder] Limit allows unsigned ints Parameterizing limits in stored procedures exposed a bug where we weren't accepting unsigned ints in LIMIT/OFFSET. This is only possible in prepared or stored procedure contexts afaik.
  • 2348: Optional integrator schema validation Move table schema validation so that we validate the accumulated result rather than sequential alters.
  • 2347: implement json_depth() MySQL Docs: https://dev.mysql.com/doc/refman/8.0/en/json-attribute-functions.html#function_json-depth
  • 2346: fix null and empty paths for json functions
  • 2345: Return correct MySQL error code when inserting into nonexistent columns. Fixes dolthub/go-mysql-server#2344 This PR also adds a test framework for testing MySQL error codes, since this doesn't appear to currently be tested. This should make adding tests for other error codes easy. Some of the MySQL error codes that I expected us to use (such as 1050: ERTableExists) have zero usages in GMS or Dolt. We're probably returning 1105: ERUnknownError for these.
  • 2343: fix json bool comparison JSON Boolean values are special; they do not behave like normal when converted/compared against other types. fixes dolthub/dolt#7528
  • 2342: Add row length guards Tests and basic engine-side guards similar to mysql's behavior. re: dolthub/dolt#7524
  • 2339: only use crosshashjoin on subqueryaliases This fixes 2 sqllogictests.
  • 2336: fix rangetree removal of largest node without left child When removing a right child, a missing nil guard was causing us to improperly propagate the new max range. This resulted in overlapping ranges. This fixes 1 sqllogictest.
  • 2335: Schema pruning considers database name Fix some inconsistencies with project and join hints. New test added for new project pruning changes.
  • 2334: fix char to bool conversion This PR adds missing nil guards in a few conversion methods. fixes dolthub/dolt#7515
  • 2333: [planbuilder] Skip post-aggregate projection when there are no aliases in target scope re: dolthub/dolt#6982 This takes the last big chunk of CPU pressure off of TPC-C execution, which is mostly disk limited now:
  • 2332: [time] shortcut for no timezone conversion This function reads files from disk to try to convert a timezone to itself. There are other optimizations we could do to maybe try checking for the integer offset before doing syscalls. re: dolthub/dolt#6982, ~10% TPC-C boost
  • 2331: fix NOT expression in conjunction with WHERE EXISTS(<subquery>) The analyzer rule unnest_exists_subqueries was accidentally dropping NOT expressions when hoisting subqueries from WHERE EXISTS... clauses. This should fix 8 sqllogictests. Correctness: dolthub/dolt#7510
  • 2330: Fix DISTINCT over DECIMALS

... (truncated)

Commits
  • 8122f68 [ga-bump-dep] Bump dependency in GMS by jycor (#2352)
  • 61579ae [no-release-notes] fix bug in memory session data management (#2353)
  • a4f33df [planbuilder] Limit allows unsigned ints (#2350)
  • ac39104 Optional integrator schema validation (#2348)
  • 060b45b implement json_depth() (#2347)
  • 0f1cfb7 Merge pull request #2345 from dolthub/nicktobey/mysql-errors
  • c79a923 fix null and empty paths for json functions (#2346)
  • 5826e68 Update handler_test tests to work when run together or individually.
  • a028ca9 Merge pull request #2319 from seanlaff/customNetListener
  • d6f264c [ga-format-pr] Run ./format_repo.sh to fix formatting
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from labkode as a code owner March 4, 2024 01:00
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 4, 2024
@dependabot dependabot bot requested a review from gmgigi96 March 4, 2024 01:00
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/dolthub/go-mysql-server-0.18.0 branch from 7ba43ab to 9006115 Compare March 18, 2024 10:12
Bumps [github.com/dolthub/go-mysql-server](https://github.com/dolthub/go-mysql-server) from 0.14.0 to 0.18.0.
- [Release notes](https://github.com/dolthub/go-mysql-server/releases)
- [Commits](dolthub/go-mysql-server@v0.14.0...v0.18.0)

---
updated-dependencies:
- dependency-name: github.com/dolthub/go-mysql-server
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/dolthub/go-mysql-server-0.18.0 branch from 9006115 to f32fe64 Compare March 19, 2024 13:50
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

Superseded by #4628.

@dependabot dependabot bot closed this Apr 15, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/dolthub/go-mysql-server-0.18.0 branch April 15, 2024 00:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants