dramaticlly opened a new issue #4435: URL: https://github.com/apache/iceberg/issues/4435
for context :https://github.com/apache/iceberg/pull/4262#pullrequestreview-899679092 Current python src structure ``` src ├── iceberg │ ├── __init__.py │ ├── expression │ │ ├── __init__.py │ │ └── literals.py │ ├── expressions.py │ ├── io │ │ ├── __init__.py │ │ ├── base.py │ │ └── pyarrow.py │ ├── types.py │ └── utils │ ├── __init__.py │ └── bin_packing.py ``` @samredai proposed following new structure ``` src ├── iceberg │ ├── __init__.py │ ├── expressions │ │ ├── __init__.py │ │ ├── operations.py (renamed from expressions.py) │ │ └── literals.py │ ├── io │ │ ├── __init__.py │ │ ├── base.py │ │ └── pyarrow.py │ ├── types.py │ └── utils │ ├── __init__.py │ └── bin_packing.py ``` The PR change shall be mechanical refactoring and introduce no logical code change -- 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]
