*/
@Test
public void dropThenCreateRowDefIDRecycled() throws InvalidOperationException {
NewAISBuilder builder = AISBBasedBuilder.create("test", ddl().getTypesTranslator());
builder.table("t1").autoIncInt("id", 1).pk("id").colString("name", 255);
ddl().createTable(session(), builder.ais().getTable("test", "t1"));
final int tidV1 = tableId("test", "t1");
writeRow(tidV1, 1, "hello world");
expectRowCount(tidV1, 1);
ddl().dropTable(session(), tableName(tidV1));