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():