I’m loading a dataset into a pandas DataFrame and creating a batch. When running the ExpectColumnValuesToBeOfType
expectation with the type 'int64'
, it only returns success: true
without providing detailed result information. The same issue occurs when I use 'datetime64'
as the type. However, if I use 'str'
, the expectation returns the JSON results correctly. Why is this happening? I believe it is not running the validation and incorrectly returning success.
What does the DataFrame that you are validating look like? Could you post couple rows as an example? The dtypes would also be useful.
Are you using the batch.validate or a Checkpoint to validate the data?
Which result format are you using?
What would the output you are expecting look like? What result information would you like to have in addition to success: true
?