Skip to content

Commit

Permalink
fix build fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
ywqzzy committed Aug 12, 2022
1 parent f70f8a9 commit 748210e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/TestUtils/tests/gtest_mock_executors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ try

auto left_builder = context.scan("test_db", "l_table")
.topN({{"l_table.l_a", false}}, 10)
.join(right_builder, {col("join_c")}, tipb::JoinType::TypeLeftOuterJoin) // todo ensure the join is legal.
.join(right_builder, tipb::JoinType::TypeLeftOuterJoin, {col("join_c")}) // todo ensure the join is legal.
.limit(10);
request = left_builder.build(context);
{
Expand Down

0 comments on commit 748210e

Please sign in to comment.