summaryrefslogtreecommitdiffstats
path: root/sqlglot/__init__.py
diff options
context:
space:
mode:
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."""