Merged PRs
dolt
- 2592: sql-server: Fix regression: Respect autocommit config.
In the migration to *SqlEngine in 0.34.4 to 0.34.5, the server config's respect for the default value for autocommit regressed. In 0.34.5 - 0.35.3,autocommit
is always turned on by default for incoming connections, regardless of the setting in the config.yaml file or the flag--no-auto-commit
being passed at the command line. - 2584: /go/store/types/format.go: Added
NomsBinFormat
for new storage format - 2578: /go/doltcore/{doltdb, sqle}: Extracted
durable.Index
interface fortypes.Map
This PR adds thedurable.Index
interface to abstracttypes.Map
out of primary and secondary indexes. Currently, this interface has limited functionality, and in almost all cases will need to be unwrapped to be useful. This is the first step is a large refactor to decouple Index logic from a Noms-specific implementation.