ianmcook commented on issue #43807:
URL: https://github.com/apache/arrow/issues/43807#issuecomment-2310562324

   If you need a Parquet file that contains a UUID column (for testing 
purposes), DuckDB can write one like this:
   
   ```py
   import duckdb
   con = duckdb.connect()
   
   con.execute("CREATE TABLE t1 AS SELECT gen_random_uuid() a FROM range(0, 
16);")
   
   con.execute("copy t1 to 'uuid_test.parquet'")
   ```
   
   Thanks @pdet for this example code.


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