We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5358e8c commit 040b7d0Copy full SHA for 040b7d0
graphdb/src/main/java/com/orientechnologies/orient/graph/sql/functions/OSQLFunctionDijkstra.java
@@ -92,7 +92,7 @@ protected Float getMinimumDistance() {
92
}
93
94
protected Float getDistance(final Vertex node, final Vertex target) {
95
- final Iterator<Edge> edges = ((OrientVertex) node).getEdges(target, paramDirection).iterator();
+ final Iterator<Edge> edges = ((OrientVertex) node).getEdges((OrientVertex) target, paramDirection).iterator();
96
if (edges.hasNext()) {
97
final Edge e = edges.next();
98
if (e != null) {
0 commit comments