Re: [Rust] Datafusion table un-registration

2021-02-08 Thread Marc Prud'hommeaux
Andy– Great! I've submitted a PR: https://github.com/apache/arrow/pull/9445 –Marc On 2021/02/08 15:53:37, Andy Grove wrote: > Hi Marc, > > Yes, that sounds like a good addition, and yes, it should be as simple as > removing it from the datasources map (although I haven't looked at that

Re: [Rust] Datafusion table un-registration

2021-02-08 Thread Andy Grove
Hi Marc, Yes, that sounds like a good addition, and yes, it should be as simple as removing it from the datasources map (although I haven't looked at that code lately). Thanks, Andy. On Mon, Feb 8, 2021 at 8:41 AM Marc Prud'hommeaux wrote: > I have a long-running ExecutionContext that needs

[Rust] Datafusion table un-registration

2021-02-08 Thread Marc Prud'hommeaux
I have a long-running ExecutionContext that needs to have parquet files registered and un-registered over time. Registration happens via register_table(), but there doesn't seem to be any corresponding unregister_table() function to later remove the table. Is this something that might be useful