}
@Test(expected = IllegalArgumentException.class)
public void testNullLoAndHiSelectorsMismatch()
{
IndexBound loBound = new IndexBound(row(itemOidIidIndexRowType, 0, 0), new SetColumnSelector(0));
IndexBound hiBound = new IndexBound(row(itemOidIidIndexRowType, 0, 0), new SetColumnSelector(1));
IndexKeyRange.bounded(itemOidIidIndexRowType, loBound, false, hiBound, false);
}