We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e46caec commit 9e60c4aCopy full SHA for 9e60c4a
pyproject.toml
@@ -24,7 +24,7 @@ dependencies = [
24
"requests",
25
"rich[jupyter]",
26
"ruamel.yaml",
27
- "sqlglot[rs]~=27.14.0",
+ "sqlglot[rs]~=27.15.3",
28
"tenacity",
29
"time-machine",
30
"json-stream"
sqlmesh/core/renderer.py
@@ -255,6 +255,7 @@ def _resolve_table(table: str | exp.Table) -> str:
255
if not expressions:
256
raise ConfigError(f"Failed to parse an expression:\n{self._expression}")
257
except Exception as ex:
258
+ # breakpoint()
259
raise ConfigError(
260
f"Could not parse the rendered jinja at '{self._path}'.\n{ex}"
261
) from ex
0 commit comments