Skip to content

Commit

Permalink
Lower Query setter
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 11, 2024
1 parent cf55337 commit bf82cdb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1 deletion.
Binary file modified dist/pysqltools-0.2.6-py3-none-any.whl
Binary file not shown.
Binary file modified dist/pysqltools-0.2.6.tar.gz
Binary file not shown.
Binary file added dist/pysqltools-0.2.7-py3-none-any.whl
Binary file not shown.
Binary file added dist/pysqltools-0.2.7.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysqltools"
version = "0.2.6"
version = "0.2.7"
description = "PySQLTools"
authors = ["Pablo Minué"]
license = "None"
Expand Down
2 changes: 2 additions & 0 deletions pysqltools/src/sql/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ def sql(self):
def sql(self, sql: str):
if self.lower_query:
self._sql = sql.lower()
else:
self._sql = sql

@property
def ctes(self) -> Generator:
Expand Down

0 comments on commit bf82cdb

Please sign in to comment.