Skip to content

Commit

Permalink
[GIE Compiler] fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed May 29, 2023
1 parent f0a36ef commit a7a0f73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public void push_filter_2_test() {
.filter(
builder.call(
GraphStdOperatorTable.EQUALS,
pxdBuilder.variable("z", "age"),
pxdBuilder.literal(10)))
builder.variable("z", "age"),
builder.literal(10)))
.build();
RelOptPlanner planner = Utils.mockPlanner(FilterMatchRule.Config.DEFAULT.toRule());
planner.setRoot(before);
Expand All @@ -95,7 +95,7 @@ public void push_filter_2_test() {
+ " GraphLogicalPathExpand(expand=[GraphLogicalExpand(tableConfig=[{isAll=false,"
+ " tables=[knows]}], alias=[DEFAULT], opt=[OUT])\n"
+ "], getV=[GraphLogicalGetV(tableConfig=[{isAll=false, tables=[person]}],"
+ " alias=[z], opt=[END])\n"
+ " alias=[DEFAULT], opt=[END])\n"
+ "], offset=[1], fetch=[3], path_opt=[SIMPLE], result_opt=[AllV],"
+ " alias=[DEFAULT])\n"
+ " GraphLogicalSource(tableConfig=[{isAll=false, tables=[person]}],"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void match_4_test() {
+ " tables=[knows]}], alias=[DEFAULT], fusedFilter=[[=(DEFAULT.weight,"
+ " 1.0E0)]], opt=[OUT])\n"
+ "], getV=[GraphLogicalGetV(tableConfig=[{isAll=false, tables=[person]}],"
+ " alias=[c], opt=[END])\n"
+ " alias=[DEFAULT], opt=[END])\n"
+ "], offset=[1], fetch=[2], path_opt=[ARBITRARY], result_opt=[EndV],"
+ " alias=[b])\n"
+ " GraphLogicalSource(tableConfig=[{isAll=false, tables=[person]}],"
Expand Down

0 comments on commit a7a0f73

Please sign in to comment.