milesgranger commented on PR #14764:
URL: https://github.com/apache/arrow/pull/14764#issuecomment-1331185036
Apologies, maybe I misunderstood. I was reading relative paths in those
comments in the context of a mutli-byte character, because a relative path
"foo.parquet" works fine:
```python
In [1]: table = pa.table({'col1': pa.array([5, 6])})
In [2]: pq.write_table(table, 'foo.parquet')
In [3]: pq.write_table(table, '例.parquet')
---------------------------------------------------------------------------
ArrowInvalid Traceback (most recent call last)
Cell In [3], line 1
----> 1 pq.write_table(table, '例.parquet')
...
ArrowInvalid: Cannot parse URI: '例.parquet'
```
The and thus the error leading me to this attempt.
--
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]