The exact location has been updated in the doc. Looking forward to seeing
some of you tomorrow.
On Thu, Jul 18, 2024 at 11:41 AM Weston Pace wrote:
> I'd like to announce an Arrow Meetup on August 13th, 2024 from 5:30PM to
> 7:30PM. Details can be found at [1]. All are welcome.
>
> We will be
Hello all,
I'm trying to convert a single line string (which is in json format) into a
table. Below is the sample code to create table from the json string (input
to this function, passed as copy)
> auto buffer = arrow::Buffer::FromString(pString);
> auto reader = std::make_sha
Don't create a memory pool locally (and destroy it when the function
returns), use the global singleton pool from `arrow::default_memory_pool()`
instead.
__
Felipe
On Mon, Aug 12, 2024 at 12:44 PM Surya Kiran Gullapalli <
suryakiran.gullapa...@gmail.com> wrote:
> Hello all,
> I'm trying to conve
Thanks,
It worked.
Surya
On Mon, Aug 12, 2024 at 10:52 PM Felipe Oliveira Carvalho <
felipe...@gmail.com> wrote:
> Don't create a memory pool locally (and destroy it when the function
> returns), use the global singleton pool from `arrow::default_memory_pool()`
> instead.
>
> __
> Felipe
>
> On