mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-20 10:26:37 -06:00
This adds IsValueSubtypeOf which skips computing the type of the value. Use IsValueSubtypeOf to implement IsCommit which checks if a value is a commit. Replace usages of IsSubtype(t, TypeOf(v)) with IsValueSubtypeOf(v, t). Fixes #3326 Fixes #3348