--output json not supported?
Apache Iceberg version
None
Please describe the bug 🐞
--output json prints "unimplemented output type". --output text works.
❯ iceberg --uri http://127.0.0.1:8181 --output json list
2025/03/05 20:42:34 unimplemented output type
~
❯ iceberg --uri http://127.0.0.1:8181 --output text list
┌───────────┐
| IDs |
| --------- |
| taxitrips |
└───────────┘
https://github.com/apache/iceberg-go/blob/ba883bdb1d26cc8ea0505e3910ffee0f9c74f315/cmd/iceberg/main.go#L146-L149
Appers to be not implemented?
@knoguchi can you please explaiin a bit more?
Is the json output type planned but never implemented?
I am here to contribute on this issue please explain this issue
@knoguchi correct, it's planned but not yet implemented.
@ayush1009208 it would be great if could contribute an implementation of the json output 😄
@zeroshade i will work on this issue
@zeroshade @knoguchi
Implemented the json output format. Please review this pull request: https://github.com/apache/iceberg-go/pull/413
looks like its implemented, thanks @okhomin !