Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void testUnion()
@Test
public void testIntersect()
{
// Estimates are significantly off as they are generated by UNESTIMATED_FILTER_COST_APPROXIMATION_ENABLED
// Estimates are significantly off as they are generated by NON_ESTIMATABLE_PREDICATE_APPROXIMATION_ENABLED
statisticsAssertion.check("SELECT * FROM nation INTERSECT SELECT * FROM nation",
checks -> checks.estimate(OUTPUT_ROW_COUNT, absoluteError(45)));

Expand All @@ -124,7 +124,7 @@ public void testIntersect()
@Test
public void testExcept()
{
// Estimates are significantly off as they are generated by UNESTIMATED_FILTER_COST_APPROXIMATION_ENABLED
// Estimates are significantly off as they are generated by NON_ESTIMATABLE_PREDICATE_APPROXIMATION_ENABLED
statisticsAssertion.check("SELECT * FROM nation EXCEPT SELECT * FROM nation",
checks -> checks.estimate(OUTPUT_ROW_COUNT, absoluteError(45)));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ public void testUnion()
@Test
public void testIntersect()
{
// Estimates are significantly off as they are generated by UNESTIMATED_FILTER_COST_APPROXIMATION_ENABLED
// Estimates are significantly off as they are generated by NON_ESTIMATABLE_PREDICATE_APPROXIMATION_ENABLED
statisticsAssertion.check("SELECT * FROM nation INTERSECT SELECT * FROM nation",
checks -> checks.estimate(OUTPUT_ROW_COUNT, absoluteError(45)));

Expand All @@ -459,7 +459,7 @@ public void testIntersect()
@Test
public void testExcept()
{
// Estimates are significantly off as they are generated by UNESTIMATED_FILTER_COST_APPROXIMATION_ENABLED
// Estimates are significantly off as they are generated by NON_ESTIMATABLE_PREDICATE_APPROXIMATION_ENABLED
statisticsAssertion.check("SELECT * FROM nation EXCEPT SELECT * FROM nation",
checks -> checks.estimate(OUTPUT_ROW_COUNT, absoluteError(45)));

Expand Down