wjones127 opened a new issue, #24030:
URL: https://github.com/apache/superset/issues/24030

   This:
   
   
https://github.com/apache/superset/blob/7a55625243e4d405ce27d72ee869cb8e8c785f6b/superset/sql_lab.py#L362-L367
   
   Should be replaced with 
   
   ```python
   sink = pa.BufferOutputStream()
   with pa.ipc.new_stream(sink, result_set.pa_table.schema) as writer:
       writer.write_table(result_set.pa_table)
   
   data = sink.getvalue().to_pybytes()
   ```
   
   Will likely need to update the deserialization code as well, where ever that 
is.
   
   Issue reported on Arrow mailing list here: 
https://lists.apache.org/thread/93sj6hzgnzz3j0gt5sw0l8pxg6b546ho


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to