-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Miscellaneous cleanups #17189
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
Miscellaneous cleanups #17189
Changes from all commits
dbf832a
c30a1ed
5af9075
c31ab2e
3f59b5e
ddaa0d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -899,6 +899,7 @@ impl TryFrom<SchemaRef> for DFSchema { | |
field_qualifiers: vec![None; field_count], | ||
functional_dependencies: FunctionalDependencies::empty(), | ||
}; | ||
dfschema.check_names()?; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Context is that checking names here makes this consistent with the other (fallible) ways to create a DFSchema from a Schema There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FWIW it seems this has caused a regression for some users in 50.0.0 (there are some code paths that violate an invariant). See #17706 |
||
Ok(dfschema) | ||
} | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.