Skip to content

Commit 1ea7efd

Browse files
committed
fix: compile error due to rebase
1 parent bff6234 commit 1ea7efd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/iceberg/manifest_adapter.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,12 @@ Status ManifestEntryAdapter::AppendPartitionValues(
220220
break;
221221
case TypeId::kDecimal:
222222
ICEBERG_RETURN_UNEXPECTED(AppendField(
223-
child_array, std::get<std::array<uint8_t, 16>>(partition_value.value())));
223+
child_array, std::get<Decimal>(partition_value.value()).ToBytes()));
224224
break;
225225
case TypeId::kUuid:
226+
ICEBERG_RETURN_UNEXPECTED(
227+
AppendField(child_array, std::get<Uuid>(partition_value.value()).bytes()));
228+
break;
226229
case TypeId::kStruct:
227230
case TypeId::kList:
228231
case TypeId::kMap:

0 commit comments

Comments
 (0)