Skip to content

Commit

Permalink
fix failed unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Nov 24, 2023
1 parent 4af499f commit 58a1fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/velox/tests/VeloxSubstraitRoundTripTest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ TEST_F(VeloxSubstraitRoundTripTest, project) {
auto vectors = makeVectors(3, 4, 2);
createDuckDbTable(vectors);
auto plan = PlanBuilder().values(vectors).project({"c0 + c1", "c1 / c2"}).planNode();
assertPlanConversion(plan, "SELECT c0 + c1, c1 / c2 FROM tmp");
assertPlanConversion(plan, "SELECT c0 + c1, c1 // c2 FROM tmp");
}

TEST_F(VeloxSubstraitRoundTripTest, cast) {
Expand Down

0 comments on commit 58a1fc5

Please sign in to comment.