iremcaginyurtturk opened a new pull request, #1564: URL: https://github.com/apache/iceberg-go/pull/1564
## What `table/arrow_scanner.go` fails to compile on `main`: ``` table/arrow_scanner.go:1027:35: undefined: internal ``` ## Why #1426 aliased the `github.com/apache/iceberg-go/table/internal` import to `tblutils` and updated the call sites, but one reference in `processRecords` was left as bare `internal.Enumerated`. There is no import named `internal`, so the `table` package no longer builds. ## Fix Point the stray reference at the `tblutils` alias, matching the 22 other call sites in the file. One line. ``` go build ./table/ # passes go vet ./table/ # passes ``` -- 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]
