}
private void checkNotNull(RowData row) {
for (int f = notNull.nextSetBit(0); f >= 0; f = notNull.nextSetBit(f+1)) {
if (row.isNull(f)) {
throw new NotNullViolationException(table.getName().getSchemaName(),
table.getName().getTableName(),
table.getColumn(f).getName());
}
}
}