Equivalance of two schemas
(self, other)
| 180 | return pos |
| 181 | |
| 182 | def __eq__(self, other): |
| 183 | """Equivalance of two schemas""" |
| 184 | return ( |
| 185 | (self.field_names() == other.field_names()) and |
| 186 | (self.field_types() == other.field_types()) and |
| 187 | (self.field_metadata() == other.field_metadata()) |
| 188 | ) |
| 189 | |
| 190 | def _pprint_impl(self, indent, str_buffer): |
| 191 | raise NotImplementedError('Field is an abstract class.') |
nothing calls this directly
no test coverage detected