public void testNoRowsFirstBatch() throws Exception {
RelationalNode node = new FakeRelationalNode(0, new List[0]);
RelationalPlan plan = new RelationalPlan(node);
TupleBatch batch = plan.nextBatch();
assertTrue("Did not get terminator batch", batch.getTerminationFlag()); //$NON-NLS-1$
}
}