MCPcopy Create free account
hub / github.com/apache/impala / equals

Method equals

fe/src/main/java/org/apache/impala/catalog/Table.java:1023–1028  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

1021 public int hashCode() { return getFullName().hashCode(); }
1022
1023 @Override
1024 public boolean equals(Object obj) {
1025 if (obj == null) return false;
1026 if (!(obj instanceof Table)) return false;
1027 return getFullName().equals(((Table) obj).getFullName());
1028 }
1029
1030 /**
1031 * Updates a table property with the current system time in seconds precision.

Callers 1

validateMethod · 0.45

Calls 2

getFullNameMethod · 0.95
getFullNameMethod · 0.65

Tested by

no test coverage detected