[DISCUSS][C++] Take over a foreign buffer with arrow::Buffer?

2025-04-01 Thread Ankush Jain
Hi, I'm using the Arrow C++ API with an external RPC library to exchange Arrow data as record batches. I can not figure out how to use the arrow::Buffer interface with my RPC library properly. Simplified version of the flow -- on the receiver of Arrow data, my RPC library hands me a uint8_t* poin

Re: [DISCUSS][C++] Take over a foreign buffer with arrow::Buffer?

2025-04-01 Thread Ankush Jain
ptr > deleter (this is how Buffer::FromVector works). I would look at the > implementation of those two methods and work from there. > > On Tue, Apr 1, 2025 at 10:16 AM Ankush Jain wrote: >> >> Hi, >> >> I'm using the Arrow C++ API with an external RPC

Re: Arrow Flight Server Querying using SQL Commands

2025-04-10 Thread Ankush Jain
Hi, To add to what Aldrin said, > query specific columns of batches/tables sitting on an arrow flight server Regardless of what transport you use (gRPC or Arrow Flight or FlightSQL), you need a way to execute a SQL query against the data on your Flight server. Unless you are planning on doing y