-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Data Synchronization/Matching] Delegate to Spark for checking existe…
…nce of columns in the given dataframes (#515) - Prior to this change, we were doing case sensitive equality checks of non-key columns. - This makes the utility more restrictive, as Spark does not care about the casing of column names. - With this change, we rely on Spark to check if a column exists in the given dataframe. If Spark can find the column, we can proceed with the rest of the check.
- Loading branch information
1 parent
4f1e4fa
commit 9b32b09
Showing
2 changed files
with
98 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