-
Notifications
You must be signed in to change notification settings - Fork 33
Add allow_asterisks_in_http_paths setting, that default to false, so … #143
New issue
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
base: main
Are you sure you want to change the base?
Conversation
Clean also global_metadata_cache on discovering a URL is now changed
DuckDB submodule to 140
Run also slow tests, and avoid skipping HTTP-connected errors
…that Globs on HTTP file system will now throw
I like this, question on the default, unsure if going bold or keep it. Reasons for forbid by default: it's reasonable, and you will get an error message so you know how to act Reason to keep current default: no changes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this, I don't think this should go in v1.4-andium though. This might break peoples workflow (albeit with an easy fix), so it should be pushed to v1.5.0
…that Globs on HTTP file system will now throw
This fix an existing
FIXME
in the code, with what I believe is a sensible default.This came up connected to running queries across different backends, and failure mode would be different, while the expected behaviour (I think) is no globs on
http://
orhttps://
.Old behaviour can be enabled via
SET allow_asterisks_in_http_paths = true;
(and arguably, if this is to land now, default needs to be swapped)