Searched refs:other_column (Results 1 – 1 of 1) sorted by relevance
458 def is_compatible(self, other_column): argument460 if self.lookup_config and other_column.lookup_config:461 return self.lookup_config == other_column.lookup_config462 compatible = (self.length == other_column.length and463 (self.dtype == other_column.dtype or464 (self.dtype.is_integer and other_column.dtype.is_integer)))467 format(self.name, other_column.name))875 def is_compatible(self, other_column): argument877 if isinstance(other_column, _WeightedSparseColumn):878 return self.sparse_id_column.is_compatible(other_column.sparse_id_column)[all …]