Skip to content

Commit

Permalink
Remove unused SUPPLIER_TABLESCAN
Browse files Browse the repository at this point in the history
  • Loading branch information
sopel39 committed Aug 27, 2019
1 parent dcf3351 commit 864bca8
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public class TestEliminateCrossJoins
private static final PlanMatchPattern ORDERS_WITH_SHIPPRIORITY_TABLESCAN = tableScan(
"orders",
ImmutableMap.of("O_ORDERKEY", "orderkey", "O_SHIPPRIORITY", "shippriority"));
private static final PlanMatchPattern SUPPLIER_TABLESCAN = tableScan("supplier", ImmutableMap.of("S_SUPPKEY", "suppkey"));
private static final PlanMatchPattern PART_TABLESCAN = tableScan("part", ImmutableMap.of("P_PARTKEY", "partkey"));
private static final PlanMatchPattern PART_WITH_NAME_TABLESCAN = tableScan("part", ImmutableMap.of("P_PARTKEY", "partkey", "P_NAME", "name"));
private static final PlanMatchPattern LINEITEM_TABLESCAN = tableScan(
Expand Down

0 comments on commit 864bca8

Please sign in to comment.