IndexedHTableDescriptor htd = new IndexedHTableDescriptor("testModifyTable");
HColumnDescriptor hcd = new HColumnDescriptor("cf");
htd.addFamily(hcd);
IndexSpecification iSpec = new IndexSpecification("spec");
iSpec.addIndexColumn(hcd, "q", ValueType.String, 10);
htd.addIndex(iSpec);
admin.createTable(htd);
ZKAssign.blockUntilNoRIT(HBaseTestingUtility.getZooKeeperWatcher(TEST_UTIL));
admin.disableTable("testModifyTable");
PrivilegedExceptionAction modifyIndexTable = new PrivilegedExceptionAction() {