diff --git a/pyproject.toml b/pyproject.toml index 053b242813..71c9d62bbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dependencies = [ "requests", "rich[jupyter]", "ruamel.yaml", - "sqlglot[rs]~=27.20.0", + "sqlglot[rs]~=27.24.2", "tenacity", "time-machine", "json-stream" diff --git a/tests/core/test_model.py b/tests/core/test_model.py index f6fc448b79..c3feef6095 100644 --- a/tests/core/test_model.py +++ b/tests/core/test_model.py @@ -919,7 +919,7 @@ def test_json_serde(): assert ( SqlModel.parse_obj(model_json_parsed).render_query().sql("duckdb") - == 'SELECT REGEXP_MATCHES("x", "y") AS "c"' + == 'SELECT REGEXP_FULL_MATCH("x", "y") AS "c"' )