Skip to content

Commit

Permalink
fix(ingest): suppress all column-level parsing errors (#10211)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Apr 8, 2024
1 parent b6c4d9c commit deaeabf
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -906,12 +906,7 @@ def _sqlglot_lineage_inner(
except CooperativeTimeoutError as e:
logger.debug(f"Timed out while generating column-level lineage: {e}")
debug_info.column_error = e
except (
SqlUnderstandingError,
ValueError,
IndexError,
sqlglot.errors.SqlglotError,
) as e:
except Exception as e:
logger.debug(f"Failed to generate column-level lineage: {e}", exc_info=True)
debug_info.column_error = e

Expand Down

0 comments on commit deaeabf

Please sign in to comment.