Formatting

This commit is contained in:
Zach Musgrave
2021-01-25 16:19:22 -08:00
parent dbe3d11165
commit 1f4ef4358f

View File

@@ -149,8 +149,8 @@ func (c Column) Equals(other Column) bool {
// kinds of values at the storage layer, but may have different constraints or type parameters.
func (c Column) Compatible(other Column) bool {
return c.Tag == other.Tag &&
c.Kind == other.Kind &&
c.IsPartOfPK == other.IsPartOfPK
c.Kind == other.Kind &&
c.IsPartOfPK == other.IsPartOfPK
}
// KindString returns the string representation of the NomsKind stored in the column.