datafusion icon indicating copy to clipboard operation
datafusion copied to clipboard

register_csv allow space in table_path

Open crc-sstubbs opened this issue 3 years ago • 0 comments

Describe the bug table_path when using:

context.register_csv

does not support spaces in path.

To Reproduce

context = SessionContext::new();

context
.register_csv("testing", "/folder/test folder/testing.csv", CsvReadOptions::new())
.await

Expected behavior function to work as it does for paths without spaces.

crc-sstubbs avatar Sep 22 '22 13:09 crc-sstubbs