badalprasadsingh commented on code in PR #524:
URL: https://github.com/apache/iceberg-go/pull/524#discussion_r2344459532
##########
manifest.go:
##########
@@ -985,7 +1029,60 @@ func constructPartitionSummaries(spec PartitionSpec,
schema *Schema, partitions
for _, part := range partitions {
for i, field := range partType.FieldList {
- fieldStats[i].update(part[field.ID])
+ value := part[field.ID]
+
+ if _, ok := field.Type.(FixedType); ok {
+ if bytes := extractBytesFromFixed(value); bytes
!= nil {
+ value = bytes
+ }
+ }
Review Comment:
Fixed. We shouldn't be requiring this anymore.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]