wonb168 opened a new issue, #14152:
URL: https://github.com/apache/arrow/issues/14152

   my arrow data:
   `pyarrow.Table
   a: int64
   b: list<item: int64>
     child 0, item: int64
   c: struct<a: string, b: int64>
     child 0, a: string
     child 1, b: int64
   d: string
   e: timestamp[us]
   ----
   a: [[1,null]]
   b: [[[1,2],[3,2]]]
   c: [
     -- is_valid: all not null
     -- child 0 type: string
   ["x",null]
     -- child 1 type: int64
   [2,2]]
   d: [["a"b","a,b"]]
   e: [[2022-02-02 00:00:00.000000,9999-12-31 00:00:00.000000]]`
   
   when `pa.csv.write_csv(dd.query("select a,b,c,d,e from 
ar").arrow(),'df_ar.csv',write_options=write_options)` raise error:
   
   ArrowInvalid: Unsupported Type:list<l: int64>
   
   ArrowInvalid: Unsupported Type:struct<a: string, b: int64>
   
   and if value has ", for example a"b , then in csv will be "a""b", and no 
options to handle this problem
   


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