-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(databricks): normalize column names (#241)
# Description The default behaviour of databricks is to return column names case sensitive when one queries the information schema, even though it treats them as case insensitive in sql statements. For table names, databricks behaviour is different, it stores them in lowercase. So, by default, table names are returned normalized by databricks, whereas column names are not. To avoid this inconsistency, we are now normalizing column names as default behaviour. Users who wish to avoid this behavioural change, they can set the `SkipColumnNormalization` configuration flag to `true`. ## Linear Ticket resolves PRO-3980 ## Security - [x] The code changed/added as part of this pull request won't create any security issues with how the software is being used.
- Loading branch information
Showing
4 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters