Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ywqzzy committed Jan 5, 2023
1 parent fea1ac9 commit 7827292
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dbms/src/Flash/tests/gtest_filter_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ try
{toVec<Int64>("i1", {1, 2, 3}),
toNullableVec<String>("s2", {"apple", {}, "banana"})});

// Do not support push down filter test for DAGQueryBlockInterpreter
enablePlanner(true);

auto request = context
.scan("test_db", "test_table1")
.filter(lt(col("i1"), lit(Field(static_cast<Int64>(2)))))
Expand All @@ -272,7 +275,6 @@ Expression: <final projection>
Expression: <projection after push down filter>
Filter: <push down filter>
DeltaMergeSegmentThread)";
// Do not support push down filter test for DAGQueryBlockInterpreter
executeInterpreterWithDeltaMerge(expected, request, 10);
}
executeAndAssertColumnsEqual(
Expand Down

0 comments on commit 7827292

Please sign in to comment.