github dolthub/dolt v1.43.12
1.43.12

3 hours ago

Merged PRs

dolt

  • 8526: Avoid comparing sql.Types in dolt diff
    Fixes #8511
    Not all implementations of sql.Type are comparable. In particular, the enum type has a map field which makes the entire type incomparable.
    To avoid doing this comparison in the chooseMostFlexibleType function, we modify it to compare the underlying type tag instead. This PR also short-circuits computing a unified schema unless the schema has changed.
  • 8514: Better view caching
    Binding a table name to a catalog symbol previously always loaded the schemas table from disk to first attempt binding a view. Now we cache dolt_schemas using its hash. If the table does not exist, no views are defined, and we short circuit attempting to bind a name to a view.

go-mysql-server

  • 2733: disabling read-comitted
  • 2732: Get field string concat
    Replace fmt.Sprintf with string concat (+).
    BenchmarkSprintf-12        	18748582	        63.29 ns/op
    BenchmarkAddString-12    	39934550	        27.61 ns/op
    
  • 2729: move applyEventScheduler logic and eventscheduler to builder
  • 2712: Planbuilder Authorization
    • dolthub/vitess#372
      What's missing:
    • SHOW commands aren't in yet
    • information_schema doesn't restrict it's output yet
    • Need far more robust testing than what currently exists
      I think SHOW and information_schema will probably have the same solution, which may be to continue doing what we were doing before. Besides that, pretty much every works according to our current tests (outside of the aforementioned missing items).

vitess

  • 374: USE Revisions use proper auth
  • 373: Fixed printing bug in AliasedExpr node (was calling wrong print metho…
    …d, which doesn't work with custom formatters)
  • 372: Embedded Authorization

Closed Issues

  • 8511: Panic on dolt show

Don't miss a new dolt release

NewReleases is sending notifications on new releases.