You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
8155: Bug fix: loading persisted @@server_id from config.json
This fixes binlog replicas loading @@server_id values persisted in config.json so that they are properly converted from strings to the right type.
Also added extra connection error logging
8153: make tags case insensitive
This PR makes it so tags are case-insensitive.
Additionally, fixes a display error in the sql shell.
fixes #8147
8152: Revive ability to read really old dolt_schema tables
We have several old databases which we don't touch but are public on DoltHub. These databases present an error to users with the removal of the migration ability in 1.42.0. The change will bring them back.
8135: Build Archives more robustly
This change is long in coming. Several findings from building a large user database are incorporated here. Specifically:
No longer storing all chunks in memory
Cancellable process with ^C
Progress reporting for major stages of the build
No chunk grouping by default, --group-chunks to enable. Pathological cgo dictionary building problem needs to be fixed before we enable by default.
Writing a useful metadata json block with dolt version and origin table file ID.
go-mysql-server
2605: add lock to prevent warnings from being cleared
This PR adds two functions to BaseSession that toggle a boolean, so integrators can prevent warnings from being cleared.
This is mostly useful for dolt sql shell.
addresses #8016
2603: [memo] reorder should add new plans to intermediate expr join child
There was a bug where we'd add reordered join plans to project or distinct nodes, rather than their join children. Code comment explains more clearly how this works.
2602: disallow forward slash in database name
fixes #8126
2600: Support information_schema.columns hook for doltgres
2593: custom row exec
Additions for custom row operators on Dolt side: #8072