alamb opened a new pull request #8083:
URL: https://github.com/apache/arrow/pull/8083
This fixes an error I saw in the Datafusion CLI. Running `CREATE EXTERNAL
TABLE` errors with `"Unsupported logical plan variant"`
Before this PR, you can't make an external table via the CLI:
{code}
> create external table test(c1 boolean) stored as CSV location
'/tmp/foo';
General("Unsupported logical plan variant")
>
{code}
After this PR:
{code}
> create external table test(c1 boolean) stored as CSV location '/tmp/foo';
0 rows in set. Query took 0 seconds.
>
{code}
Other changes:
* Made the list of unsupported plan nodes explicit in the planer
* Added a test for this behavior.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]