You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by GitBox <gi...@apache.org> on 2019/10/28 03:27:14 UTC

[GitHub] [calcite] cndaimin commented on a change in pull request #1531: [CALCITE-3447]Fix 'equals' and 'hashcode' methods of class 'MutableScan'

cndaimin commented on a change in pull request #1531: [CALCITE-3447]Fix 'equals' and 'hashcode' methods of class 'MutableScan'
URL: https://github.com/apache/calcite/pull/1531#discussion_r339392436
 
 

 ##########
 File path: core/src/main/java/org/apache/calcite/rel/mutable/MutableScan.java
 ##########
 @@ -36,11 +36,11 @@ public static MutableScan of(TableScan scan) {
   @Override public boolean equals(Object obj) {
     return obj == this
         || obj instanceof MutableScan
-        && rel.equals(((MutableScan) obj).rel);
+        && rel.getTable().equals(((MutableScan) obj).rel.getTable());
   }
 
 Review comment:
   Agree with you on this. However the method `MaterializedViewSubstitutionVisitor.go` is declared public and the correctness of the inner implementation should be ensured, I think. Please reconsider this issue, thanks.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services