From fb8d8a503eca4925663142971ea68db92e9acc09 Mon Sep 17 00:00:00 2001 From: George Sittas Date: Wed, 8 Oct 2025 16:03:01 +0300 Subject: [PATCH] Chore!: bump sqlglot to v27.24.2 --- pyproject.toml | 2 +- tests/core/test_model.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"' )