Skip to content

Commit

Permalink
[GIE Compiler] fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Sep 25, 2023
1 parent 8836b2b commit b478663
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
public class CallProcedureTest {
@Test
public void procedure_1_test() {
LogicalPlan logicalPlan = Utils.evalLogicalPlan("Call ldbc_ic2(10, 20120112l)");
LogicalPlan logicalPlan = Utils.evalLogicalPlan("Call ldbc_ic2(10l, 20120112l)");
Assert.assertEquals("ldbc_ic2(10:BIGINT, 20120112:BIGINT)", logicalPlan.explain().trim());
Assert.assertEquals(
"RecordType(CHAR(1) name)", logicalPlan.getProcedureCall().getType().toString());
Expand Down

0 comments on commit b478663

Please sign in to comment.