IndexedHTableDescriptor ihtd = new IndexedHTableDescriptor(userTableName);
HColumnDescriptor hcd = new HColumnDescriptor("col");
IndexSpecification iSpec = new IndexSpecification("ScanIndexe");
iSpec.addIndexColumn(hcd, "ql", ValueType.String, 10);
ihtd.addFamily(hcd);
ihtd.addIndex(iSpec);
admin.createTable(ihtd);
ZKAssign.blockUntilNoRIT(zkw);
int i = singleIndexPutAndCache(conf, userTableName);
Assert.assertEquals("Should match for exactly 5 rows ", 5, i);
Assert.assertTrue("Seek points should be added ", IndexRegionObserver.getSeekpointAdded());