Skip to content

Commit

Permalink
refine.
Browse files Browse the repository at this point in the history
  • Loading branch information
ywqzzy committed Oct 8, 2022
1 parent c358d9a commit a4478e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbms/src/Flash/tests/gtest_join_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ CATCH
TEST_F(JoinExecutorTestRunner, RawQuery)
try
{
const auto * query = "select * from test_db.l_table left outer join test_db.r_table_2 using join_c";
String query = "select * from test_db.l_table left outer join test_db.r_table_2 using join_c";
auto cols = {toNullableVec<String>({"banana", "banana", "banana", "banana"}), toNullableVec<String>({"apple", "apple", "apple", "banana"}), toNullableVec<String>({"banana", "banana", "banana", {}}), toNullableVec<String>({"apple", "apple", "apple", {}})};
ASSERT_COLUMNS_EQ_R(executeRawQuery(query, 1), cols);
}
Expand Down
2 changes: 1 addition & 1 deletion dbms/src/Flash/tests/gtest_limit_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ CATCH
TEST_F(ExecutorLimitTestRunner, RawQuery)
try
{
const auto * query = "select * from test_db.projection_test_table limit 1";
String query = "select * from test_db.projection_test_table limit 1";
auto cols = {toNullableVec<String>(col_name, ColumnWithData(col0.begin(), col0.begin() + 1))};
ASSERT_COLUMNS_EQ_R(executeRawQuery(query, 1), cols);
}
Expand Down

0 comments on commit a4478e1

Please sign in to comment.