throw new NoSuchTableException(name.getFullTableName());
}
index = table.getFullTextIndex(name.getName());
if (index == null) {
NoSuchIndexException ret = new NoSuchIndexException(name.getName());
ret.printStackTrace();
throw ret;
}
schema = SchemaCache.globalSchema(ais);
indexedRowType = schema.tableRowType(table);
hKeyRowType = schema.newHKeyRowType(table.hKey());