We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff6234 commit 1ea7efdCopy full SHA for 1ea7efd
src/iceberg/manifest_adapter.cc
@@ -220,9 +220,12 @@ Status ManifestEntryAdapter::AppendPartitionValues(
220
break;
221
case TypeId::kDecimal:
222
ICEBERG_RETURN_UNEXPECTED(AppendField(
223
- child_array, std::get<std::array<uint8_t, 16>>(partition_value.value())));
+ child_array, std::get<Decimal>(partition_value.value()).ToBytes()));
224
225
case TypeId::kUuid:
226
+ ICEBERG_RETURN_UNEXPECTED(
227
+ AppendField(child_array, std::get<Uuid>(partition_value.value()).bytes()));
228
+ break;
229
case TypeId::kStruct:
230
case TypeId::kList:
231
case TypeId::kMap:
0 commit comments