Skip to content

Commit

Permalink
chore(deps): update sqlglot requirement from ~=25.22.0 to ~=25.24.1 (#…
Browse files Browse the repository at this point in the history
…141)


Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oliver Mannion <[email protected]>
  • Loading branch information
dependabot[bot] and tekumara authored Oct 5, 2024
1 parent a3898ce commit 8e7c343
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
"duckdb~=1.0.0",
"pyarrow",
"snowflake-connector-python",
"sqlglot~=25.22.0",
"sqlglot~=25.24.1",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_alias_in_join() -> None:
""")
.transform(alias_in_join)
.sql()
== "SELECT T.COL, SUBSTR(T.COL, 4) AS ALIAS, J.ANOTHER FROM TEST AS T LEFT JOIN JOINED AS J ON SUBSTR(T.COL, 4) = J.COL" # noqa: E501
== "SELECT T.COL, SUBSTRING(T.COL, 4) AS ALIAS, J.ANOTHER FROM TEST AS T LEFT JOIN JOINED AS J ON SUBSTRING(T.COL, 4) = J.COL" # noqa: E501
)


Expand Down

0 comments on commit 8e7c343

Please sign in to comment.