We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63fbcf3 commit 2157634Copy full SHA for 2157634
python/datafusion/input/location.py
@@ -83,6 +83,7 @@ def build_table(
83
raise RuntimeError(msg)
84
85
# Input could possibly be multiple files. Create a list if so
86
- input_files = Path.glob(input_item)
+ input_path = Path(input_item)
87
+ input_files = [str(p) for p in input_path.parent.glob(input_path.name)]
88
89
return SqlTable(table_name, columns, num_rows, input_files)
0 commit comments