summaryrefslogtreecommitdiffstats
path: root/sqlglot/__init__.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-03 09:12:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-03 09:12:28 +0000
commit67c28dbe67209effad83d93b850caba5ee1e20e3 (patch)
treedffdfbfb4f0899c92a4c978e6eac55af2ff76367 /sqlglot/__init__.py
parentReleasing debian version 11.5.2-1. (diff)
downloadsqlglot-67c28dbe67209effad83d93b850caba5ee1e20e3.tar.xz
sqlglot-67c28dbe67209effad83d93b850caba5ee1e20e3.zip
Merging upstream version 11.7.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sqlglot/__init__.py')
-rw-r--r--sqlglot/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sqlglot/__init__.py b/sqlglot/__init__.py
index 1feb464..42d89d1 100644
--- a/sqlglot/__init__.py
+++ b/sqlglot/__init__.py
@@ -21,10 +21,12 @@ from sqlglot.expressions import (
Expression as Expression,
alias_ as alias,
and_ as and_,
+ cast as cast,
column as column,
condition as condition,
except_ as except_,
from_ as from_,
+ func as func,
intersect as intersect,
maybe_parse as maybe_parse,
not_ as not_,
@@ -33,6 +35,7 @@ from sqlglot.expressions import (
subquery as subquery,
table_ as table,
to_column as to_column,
+ to_identifier as to_identifier,
to_table as to_table,
union as union,
)
@@ -47,7 +50,7 @@ if t.TYPE_CHECKING:
T = t.TypeVar("T", bound=Expression)
-__version__ = "11.5.2"
+__version__ = "11.7.1"
pretty = False
"""Whether to format generated SQL by default."""