We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried both using DuckDB 1.1.3 (Latest as of this post) and 1.2.0-SNAPSHOT (using DBeaver).
Reproduction:
/tmp/default_storage_173276977134208/tables/00000000-0000-0000-0000-00000ee128fc
INSTALL iceberg; LOAD iceberg; SELECT * FROM iceberg_scan('/tmp/default_storage_173276977134208/tables/00000000-0000-0000-0000-00000ee128fc/metadata/00015-49f45d85-a345-4fc3-92f1-1e0c8b1950ef.gz.metadata.json');
crash_report.log
The text was updated successfully, but these errors were encountered:
I had two errors after resolving this one (I forgot to set METADATA_COMPRESSION_CODEC='gzip'):
METADATA_COMPRESSION_CODEC='gzip'
file://
FileSystem::ExpandPath
string FileSystem::ExpandPath(const string &path, optional_ptr<FileOpener> opener) { auto file_path = path; auto file_prefix = "file://"; if (StringUtil::StartsWith(path, file_prefix)) { file_path = path.substr(strlen(file_prefix)); } if (file_path.empty()) { return file_path; } if (file_path[0] == '~') { return GetHomeDirectory(opener) + file_path.substr(1); } return file_path; }
I'm closing this issue as it's no longer needed since there are other issues / PRs.
Sorry, something went wrong.
This is a real issue as it crashes instead of throwing and indicative error (or automatically handling compression)
No branches or pull requests
I tried both using DuckDB 1.1.3 (Latest as of this post) and 1.2.0-SNAPSHOT (using DBeaver).
Reproduction:
/tmp/default_storage_173276977134208/tables/00000000-0000-0000-0000-00000ee128fc
crash_report.log
The text was updated successfully, but these errors were encountered: