We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9213f60 commit 5691a25Copy full SHA for 5691a25
pyproject.toml
@@ -24,7 +24,7 @@ dependencies = [
24
"requests",
25
"rich[jupyter]",
26
"ruamel.yaml",
27
- "sqlglot[rs]~=28.6.0",
+ "sqlglot[rs]~=28.7.0",
28
"tenacity",
29
"time-machine",
30
"json-stream"
sqlmesh/core/state_sync/common.py
@@ -140,7 +140,7 @@ def all_batch_range(cls) -> ExpiredBatchRange:
140
def _expanded_tuple_comparison(
141
cls,
142
columns: t.List[exp.Column],
143
- values: t.List[exp.Literal],
+ values: t.List[t.Union[exp.Literal, exp.Neg]],
144
operator: t.Type[exp.Expression],
145
) -> exp.Expression:
146
"""Generate expanded tuple comparison that works across all SQL engines.
0 commit comments