Skip to content

Commit 83cefeb

Browse files
committed
Remove column result unexpected_index_list
1 parent 8603346 commit 83cefeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/jobs/housing/housing_apply_gx_dq_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def main():
110110
results_dict = list(checkpoint_result.run_results.values())[0].to_json_dict()
111111
table_results_df = pd.json_normalize(results_dict['results'])
112112
cols_to_drop = [c for c in table_results_df.columns if c.startswith('exception_info')]
113+
cols_to_drop.append('result.unexpected_list')
113114
table_results_df = table_results_df.drop(columns=cols_to_drop)
114115
table_results_df_list.append(table_results_df)
115116

@@ -151,7 +152,6 @@ def main():
151152
'result.unexpected_count': 'bigint',
152153
'result.missing_count': 'bigint',
153154
'result.partial_unexpected_list': 'array<string>',
154-
'result.unexpected_list': 'array<string>',
155155
'result.unexpected_index_list': 'array<bigint>',
156156
'result.unexpected_index_query': 'string',
157157
'expectation_config.kwargs.regex': 'string',

0 commit comments

Comments
 (0)