assertThat(chain.shardProjectors.size(), is(2));
}
@Test
public void testWithoutShardProjections() throws Exception {
TopNProjection topN = new TopNProjection(0, 1);
GroupProjection groupProjection = new GroupProjection(
Arrays.<DataTypeSymbol>asList(Literal.newLiteral(true)),
Arrays.asList(countAggregation()));
ShardProjectorChain chain = new ShardProjectorChain(2, ImmutableList.of(groupProjection, topN), projectionToProjectorVisitor);