return placementStrategy;
}
public boolean isCounterColumn(String schemaName, String cfName)
{
Table table = getColumnFamily(schemaName, cfName);
if (table != null)
{
return table.getProperties().getProperty(CassandraConstants.DEFAULT_VALIDATION_CLASS)
.equalsIgnoreCase(CounterColumnType.class.getSimpleName()) ? true : false;
}
return false;
}