esodan commented on issue #1280: URL: https://github.com/apache/arrow-adbc/issues/1280#issuecomment-1807328577
Vala produce C code, so if we wraps but use symbols from other libraries, they depends on them; in this case Ruby use `Arrow::RecordBatchReader.import` so in C this symbol should be linked against the library providing it. GADBC avoids this by using `void*` but that is hard to bind because there is not confidence about its type and how handle it for memory management. Then GADBC requires to add objects to handle data returned by queries, streams and data structures, but that is the job of Arrow I think; so, make depends GADBC to Arrow should be a natural step. I see GADBC as the bridge between Data Sources and Data Structures and Streams to handle them, where the data types and streams are provided by Apache Arrow, while the data source driver translate his own format to Arrow. -- 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]
