This is an automated email from the ASF dual-hosted git repository.
asolimando pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new 908e86ae62 Make HepPlanner.getVertexParents() protected
908e86ae62 is described below
commit 908e86ae627986c07bfa7ac392d8d4caa74d5d72
Author: Claude Brisson <[email protected]>
AuthorDate: Wed Oct 8 21:49:47 2025 +0200
Make HepPlanner.getVertexParents() protected
---
core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
b/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
index 30b031f8ba..e9cb6da02a 100644
--- a/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
+++ b/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
@@ -565,7 +565,7 @@ private boolean doesConverterApply(
* @param vertex the vertex
* @return the list of parents for the vertex
*/
- private List<HepRelVertex> getVertexParents(HepRelVertex vertex) {
+ protected List<HepRelVertex> getVertexParents(HepRelVertex vertex) {
final List<HepRelVertex> parents = new ArrayList<>();
final List<HepRelVertex> parentVertices =
Graphs.predecessorListOf(graph, vertex);