maupatel opened a new issue, #50897: URL: https://github.com/apache/arrow/issues/50897
In `python/pyarrow/orc.py`, the `compression` parameter docstring for the ORC writer reads: ``` Note that LZ0 is currently not supported. ``` This should be `LZO` (Lempel-Ziv-Oberhumer). The current text uses the digit zero (`LZ0`), which is not a real codec name; `LZO` is the compression algorithm ORC references. The valid-values list just above it spells the other codecs correctly. Minor documentation fix; I will open a PR. -- 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]
