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 751d1a4 commit 89e1c2fCopy full SHA for 89e1c2f
chsql/src/parquet_ordered_scan.cpp
@@ -101,6 +101,9 @@ namespace duckdb {
101
while (fileList.Scan(it, filename)) {
102
unglobbedFileList.push_back(filename);
103
}
104
+ if (unglobbedFileList.empty()) {
105
+ throw duckdb::InvalidInputException("No files matched the provided pattern.");
106
+ }
107
108
res->orderBy = input.inputs[1].GetValue<string>();
109
for (auto & file : unglobbedFileList) {
0 commit comments