@BeforeMethod
public void setUp()
throws Exception
{
scanAssignments = ImmutableMap.<Symbol, ColumnHandle>builder()
.put(A, new DualColumnHandle("a"))
.put(B, new DualColumnHandle("b"))
.put(C, new DualColumnHandle("c"))
.put(D, new DualColumnHandle("d"))
.put(E, new DualColumnHandle("e"))
.put(F, new DualColumnHandle("f"))
.build();
Map<Symbol, ColumnHandle> assignments = Maps.filterKeys(scanAssignments, Predicates.in(ImmutableList.of(A, B, C, D, E, F)));
baseTableScan = new TableScanNode(
newId(),