Identical returns true if every field in this ColumnType is exactly the same as every corresponding field in the given ColumnType. Identical performs a deep comparison, traversing any Tuple or Array contents. NOTE: Consider whether the desired semantics really require identical types, or if Equival
(other *T)
| 2295 | // NOTE: Consider whether the desired semantics really require identical types, |
| 2296 | // or if Equivalent is the right method to call instead. |
| 2297 | func (t *T) Identical(other *T) bool { |
| 2298 | return t.InternalType.Identical(&other.InternalType) |
| 2299 | } |
| 2300 | |
| 2301 | // Equal is for use in generated protocol buffer code only. |
| 2302 | func (t *T) Equal(other *T) bool { |
no outgoing calls
no test coverage detected