public boolean equals()

in zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/tools/lineage/ColumnEntity.java [37:48]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }

    if (!(o instanceof ColumnEntity)) {
      return false;
    }

    ColumnEntity other = (ColumnEntity) o;
    return table.equals(other.table) && name.equalsIgnoreCase(other.name);
  }