}
@Test
public void cycleDecimalRows() throws IOException {
RowType rowType = schema.newValuesType(MNumeric.INT.instance(false), MNumeric.DECIMAL.instance(11,0, false), MString.varchar());
List<Row> rows = new ArrayList<>();
for (int i = 0; i < 10; i++) {
BigDecimal value = new BigDecimal (random.nextInt(100000));
rows.add(row(rowType, random.nextInt(), value, characters(5+random.nextInt(10))));
bindRows.add(BindableRow.of(rows.get(i)));