Merged PRs
dolt
- 4053: Fix racey updates of NomsBlockStore putCount
Found this issue while running tests in the new format with the -race flag enabled in ld. Harmless issue as it is only used in tests. - 4049: Dropping a non-pk column that is before a primary key column should be diffable.
Fixes #4037
The ordering of the primary key columns in returned by Schema.GetAllCols() should not determine diffability.
If and only if the primary key tags, their ordinal ordering, and their types (in the new format) are equal, two schemas are diffable.
Schema.GetPkCols() always returns the columns in ordinal order:
dolt/go/libraries/doltcore/schema/schema_test.go
Lines 106 to 145 in ad47168
- 4014: Add a variety of skipped bats tests