Replies: 3 comments
-
You can use |
Beta Was this translation helpful? Give feedback.
-
Is this a compilation error or a runtime error. If it is a compilation error you are likely mixing arrow versions, you need to use the same version of arrow as datafusion is. If you can share your Cargo.toml I can advise |
Beta Was this translation helpful? Give feedback.
-
Hello! Sorry it took me that long to report back. You are rigth @tustvold it was a dependency conflict between datafusion and arrow |
Beta Was this translation helpful? Give feedback.
-
Hello!
My use case looks like this: I am reading an ipc stream and I would like to register record batches to datafusion, this is the snippet of the code I wrote:
register_batch
fails with such error and I am not sure about how to move from a arrow::record_batch to a datafusion::arrow::record_batch or if I am doing all of this in the wrong way.expected
datafusion::arrow::record_batch::RecordBatch
, foundarrow::record_batch::RecordBatch
Thanks
Beta Was this translation helpful? Give feedback.
All reactions