-
I wanted to create a MemTable from an Array Stream, but realized that MemTable does not expose the internal Arrow data and I can only access the original data by executing a query. datafusion/datafusion-examples/examples/memtable.rs Lines 30 to 52 in f807947 Which Struct that DataFusion has would be ideal if I want to input/output data? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Do you want to access the data inside the |
Beta Was this translation helpful? Give feedback.
Thanks for your reply.
Finally, I judged it reasonable to define a simple Struct with C Stream interface.