We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a18eb4 commit dfe5b3aCopy full SHA for dfe5b3a
sqlmesh/core/renderer.py
@@ -242,10 +242,9 @@ def _resolve_table(table: str | exp.Table) -> str:
242
except ParsetimeAdapterCallError:
243
raise
244
except Exception as ex:
245
- error_msg = f"Could not render jinja for '{self._path}'.\n" + extract_error_details(
246
- ex
247
- )
248
- raise ConfigError(error_msg) from ex
+ raise ConfigError(
+ f"Could not render jinja for '{self._path}'.\n" + extract_error_details(ex)
+ ) from ex
249
250
if rendered_expression.strip():
251
try:
0 commit comments