1
0
Fork 0

Merging upstream version 11.7.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-13 15:52:09 +01:00
parent 0c053462ae
commit 8d96084fad
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
144 changed files with 44104 additions and 39367 deletions

View file

@ -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."""