}
@Override
public OrderedTable getDataset(DatasetSpecification spec,
Map<String, String> arguments, ClassLoader classLoader) throws IOException {
ConflictDetection conflictDetection =
ConflictDetection.valueOf(spec.getProperty("conflict.level", ConflictDetection.ROW.name()));
// NOTE: ttl property is applied on server-side in CPs
// check if read-less increment operations are supported
boolean supportsIncrements = HBaseOrderedTableAdmin.supportsReadlessIncrements(spec);
return new HBaseOrderedTable(spec.getName(), conflictDetection, hConf, supportsIncrements);