This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
The following commit(s) were added to refs/heads/main by this push:
new 811b7bf Fix infinite recursion bug in EqualityFieldIDs accessor (#186)
811b7bf is described below
commit 811b7bf2a469d7554ea1debe382dc9c9144bc5a9
Author: Joshua Humphries <[email protected]>
AuthorDate: Mon Nov 4 09:59:36 2024 -0500
Fix infinite recursion bug in EqualityFieldIDs accessor (#186)
---
manifest.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/manifest.go b/manifest.go
index b8320e3..e14d56e 100644
--- a/manifest.go
+++ b/manifest.go
@@ -792,7 +792,7 @@ func (d *dataFile) EqualityFieldIDs() []int {
if d.EqualityIDs == nil {
return nil
}
- return d.EqualityFieldIDs()
+ return *d.EqualityIDs
}
func (d *dataFile) SortOrderID() *int { return d.SortOrder }