case REVERSED_SLICE:
{
Select select = table == null
? select().all().from(mapper.getKeyspace(), mapper.getTable())
: select().all().from(table);
Select.Where where = select.where();
for (int i = 0; i < mapper.partitionKeys.size(); i++)
where.and(eq(mapper.partitionKeys.get(i).getColumnName(), bindMarker()));
if (startBoundSize > 0) {
if (startBoundSize == 1) {