Describe the bug
When attempting to use any check on a field that has a '.' in the name such as:
.isComplete("column.name")
You will get an exception like:
Exception: Verification checks failed: [{'check_status': 'Error', 'check_level': 'Error', 'constraint_status': 'Failure', 'check': 'Verification checks', 'constraint_message': "org.apache.spark.sql.AnalysisException: cannot resolve '`column.name`' given input columns: [column.name];
To Reproduce
Steps to reproduce the behavior:
- Create a data source with a column name that has a '.' in such as 'column.name'
- Create a verification suite that includes the check
.isComplete("column.name")
- Run the code
- See the error
Expected behavior
The field name should be resolved, allowing checks to be performed
Describe the bug
When attempting to use any check on a field that has a '.' in the name such as:
You will get an exception like:
To Reproduce
Steps to reproduce the behavior:
.isComplete("column.name")Expected behavior
The field name should be resolved, allowing checks to be performed