From 83cefeb3c2ef3217769b12495b9863211947c7bc Mon Sep 17 00:00:00 2001 From: AGibson <4319494+annajgibson@users.noreply.github.com> Date: Tue, 13 May 2025 16:39:18 +0100 Subject: [PATCH] Remove column result unexpected_index_list --- scripts/jobs/housing/housing_apply_gx_dq_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jobs/housing/housing_apply_gx_dq_tests.py b/scripts/jobs/housing/housing_apply_gx_dq_tests.py index 29fce3b29..bb79a26ba 100644 --- a/scripts/jobs/housing/housing_apply_gx_dq_tests.py +++ b/scripts/jobs/housing/housing_apply_gx_dq_tests.py @@ -110,6 +110,7 @@ def main(): results_dict = list(checkpoint_result.run_results.values())[0].to_json_dict() table_results_df = pd.json_normalize(results_dict['results']) cols_to_drop = [c for c in table_results_df.columns if c.startswith('exception_info')] + cols_to_drop.append('result.unexpected_list') table_results_df = table_results_df.drop(columns=cols_to_drop) table_results_df_list.append(table_results_df) @@ -151,7 +152,6 @@ def main(): 'result.unexpected_count': 'bigint', 'result.missing_count': 'bigint', 'result.partial_unexpected_list': 'array', - 'result.unexpected_list': 'array', 'result.unexpected_index_list': 'array', 'result.unexpected_index_query': 'string', 'expectation_config.kwargs.regex': 'string',