From 90a4bd36f94e70bd83be224b9efcfcbc4c2f7800 Mon Sep 17 00:00:00 2001 From: George Sittas Date: Mon, 9 Jun 2025 19:52:30 +0300 Subject: [PATCH] Chore!: bump sqlglot to v26.26.0 --- pyproject.toml | 2 +- tests/core/test_dialect.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6054adc0d2..b172c86375 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ dependencies = [ "requests", "rich[jupyter]", "ruamel.yaml", - "sqlglot[rs]~=26.25.3", + "sqlglot[rs]~=26.26.0", "tenacity", "time-machine", "json-stream" diff --git a/tests/core/test_dialect.py b/tests/core/test_dialect.py index 76a5e66b66..c6b23efa1a 100644 --- a/tests/core/test_dialect.py +++ b/tests/core/test_dialect.py @@ -643,9 +643,6 @@ def test_model_normalization_quote_flexibility(): normalize_model_name('"catalog"."db"."table"', default_catalog=None, dialect="spark") == '"catalog"."db"."table"' ) - # It doesn't work the other way which is what we currently expect - with pytest.raises(ParseError): - normalize_model_name("`catalog`.`db`.`table`", default_catalog=None, dialect=None) def test_macro_parse():