private List<KeyValue> genSomeKeys(String userTableName) throws Exception {
List<KeyValue> ret = new ArrayList<KeyValue>(4);
HBaseAdmin admin = UTIL.getHBaseAdmin();
ZooKeeperWatcher zkw = HBaseTestingUtility.getZooKeeperWatcher(UTIL);
IndexedHTableDescriptor ihtd = new IndexedHTableDescriptor(userTableName);
HColumnDescriptor hcd1 = new HColumnDescriptor("column1");
HColumnDescriptor hcd2 = new HColumnDescriptor("column2");
IndexSpecification iSpec1 = new IndexSpecification("Index");
iSpec1.addIndexColumn(hcd1, "q", ValueType.String, 10);
iSpec1.addIndexColumn(hcd2, "q", ValueType.String, 10);
ihtd.addFamily(hcd1);
ihtd.addFamily(hcd2);
ihtd.addIndex(iSpec1);
admin.createTable(ihtd);
ZKAssign.blockUntilNoRIT(zkw);
ByteArrayBuilder indexColVal = ByteArrayBuilder.allocate(4);
indexColVal.put(Bytes.toBytes((short) 3));
indexColVal.put(Bytes.toBytes((short) 32));