silundong commented on code in PR #4392:
URL: https://github.com/apache/calcite/pull/4392#discussion_r2111461491
##########
core/src/main/java/org/apache/calcite/rel/rules/HyperEdge.java:
##########
@@ -20,42 +20,96 @@
import org.apache.calcite.rel.core.JoinRelType;
import org.apache.calcite.rex.RexNode;
+import java.util.HashMap;
+import java.util.Map;
+
/**
* Edge in HyperGraph, that represents a join predicate.
*/
@Experimental
public class HyperEdge {
- private final long leftNodeBits;
+ // equivalent to the l-tes in CD-C paper
+ private final long leftEndpoint;
Review Comment:
As you said, I prefer to use long.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]