return new HivePartition(tableName);
}
ImmutableMap.Builder<ConnectorColumnHandle, Comparable<?>> builder = ImmutableMap.builder();
for (Entry<String, String> entry : makeSpecFromName(partitionId).entrySet()) {
ConnectorColumnHandle handle = columnsByName.get(entry.getKey());
checkArgument(handle != null, "Invalid partition key %s in partition %s", entry.getKey(), partitionId);
HiveColumnHandle columnHandle = checkType(handle, HiveColumnHandle.class, "handle");
String value = entry.getValue();
Type type = columnHandle.getType();