vdytyniak-exos opened a new issue, #34049:
URL: https://github.com/apache/arrow/issues/34049

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   The following code produces different partition value in the path:
   MacOs: data/hour=2020-01-01 01:00:00
   Ubuntu: data/hour=2020-01-01%2001%3A00%3A00
   
   ```
   import pyarrow as pa
   import pyarrow.parquet as pq
   
   table = pa.table(
       {
           'hour': ['2020-01-01 01:00:00'],
           'animal': ["Flamingo"],
       },
   )
   
   pq.write_to_dataset(table, root_path='data', partition_cols=['hour'])
   ```
   
   In production code we use S3FileSystem and it leads to a problem when users 
use the same code to save the data, but it stores the data in a different place.
   
   pyarrow: 11.0.0
   
   ### Component(s)
   
   Python


-- 
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]

Reply via email to