Skip to content

Commit

Permalink
refine java codes
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Jun 14, 2024
1 parent 21ff9ce commit 87548b7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1707,9 +1707,9 @@ public void g_V_has_label_person_limit_10_as_a() {
RelNode node = eval("g.V().hasLabel('person').limit(10).as('a')");
Assert.assertEquals(
"GraphLogicalProject($f0=[_], isAppend=[false])\n"
+ " GraphLogicalSort(fetch=[10])\n"
+ " GraphLogicalSource(tableConfig=[{isAll=false, tables=[person]}],"
+ " alias=[a], opt=[VERTEX])",
+ " GraphLogicalSort(fetch=[10])\n"
+ " GraphLogicalSource(tableConfig=[{isAll=false, tables=[person]}],"
+ " alias=[a], opt=[VERTEX])",
node.explain().trim());
}
}

0 comments on commit 87548b7

Please sign in to comment.