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(1), true));
schema.addIndex(aspect);
ApplyIndexAspectStep step = new ApplyIndexAspectStep();
step.setAspectName(aspect.getName());
step.addPointcutPattern(table.getIndex(0).getName(), true);