-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: spark null filter pushdown to cosmos DB (#23804)
Fixes: #23282 cosmos DB is schema-less, spark is schema-full. when reading data from cosmos DB, spark connector translates both null and undefined values to null spark column value. hence from the spark perspective null and not defined values in cosmos db are the same. expected behaviour: if there is a null spark filter on a column value, that should be translated to either null value or undefined value on the cosmos db query pushdown
- Loading branch information
Showing
3 changed files
with
30 additions
and
4 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