assertEquals(2, table.getIndex(0).getIndexColumnCount());
table.setType(Table.MANAGED); // comes in as Table.EXTERNAL from DB
Index aspect = new Index("aspect", Index.ASPECT, null);
aspect.addIndexColumn(new IndexColumn(table.getColumn("value"), true));
table.getIndex(0).addAspect(aspect);
schema.addIndex(aspect);
RemoveIndexAspectStep step = new RemoveIndexAspectStep();