For the integer column been automatically inferred as dtype object, how to check its actual data type Int64?
when I check with int, 18% are failing
batch.expect_column_values_to_be_of_type(column="departmentId", type_="int")
{ "success": false, "result": { "element_count": 29987, "missing_count": 0, "missing_percent": 0.0, "unexpected_count": 5411, "unexpected_percent": 18.044485943909027, "unexpected_percent_nonmissing": 18.044485943909027, "partial_unexpected_list": [ "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288", "288" ] }, "meta": {}, "exception_info": null }
when I check with int64, 100% failed
batch.expect_column_values_to_be_of_type(column=“departmentId”, type_=“int64”)
{ "success": false, "result": { "element_count": 29987, "missing_count": 0, "missing_percent": 0.0, "unexpected_count": 29987, "unexpected_percent": 100.0, "unexpected_percent_nonmissing": 100.0, "partial_unexpected_list": [ 287, 288, 287, 287, 288, 288, 287, 287, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288 ] }, "meta": {}, "exception_info": null }