Merged PRs
dolt
- 9851: Bug fix:
dolt_status
works with anas of
clause
Fixes: #8283 - 9833: support dolt tests in dolt ci
This PR add support for running Dolt Tests in DoltHub CI. User's can now define the dolt tests they want to execute in DoltHub CI but specifying one or both of the Dolt Test Step Workflow fields,dolt_test_tests: []
and/ordolt_test_groups: []
, like so:Thename: wf_dt_example on: push: {} jobs: - name: job steps: - name: run group a tests dolt_test_groups: ["group_a"] - name: run tests 4 and 5 dolt_test_tests: ["test_4", "test_5"]
dolt ci run
command has also been updated to support executing Workflows with Dolt Test Steps locally.
go-mysql-server
- 3227: #9857: Add UUID_SHORT() support
Fixes #9857
Companion dolthub/docs#2676 - 3224: Validate expressions in
ORDER BY
clause duringGROUP BY
validation
fixes #9767
update dolt test in #9853 - 3217: Add
CREATE DATABASE
fall back onCREATE SCHEMA
to mirror MySQL
Fixes #9830