102 lines
1.8 KiB
Python
102 lines
1.8 KiB
Python
|
# sql/__init__.py
|
||
|
# Copyright (C) 2005-2018 the SQLAlchemy authors and contributors
|
||
|
# <see AUTHORS file>
|
||
|
#
|
||
|
# This module is part of SQLAlchemy and is released under
|
||
|
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
||
|
|
||
|
from .expression import (
|
||
|
Alias,
|
||
|
ClauseElement,
|
||
|
ColumnCollection,
|
||
|
ColumnElement,
|
||
|
CompoundSelect,
|
||
|
Delete,
|
||
|
FromClause,
|
||
|
Insert,
|
||
|
Join,
|
||
|
Select,
|
||
|
Selectable,
|
||
|
TableClause,
|
||
|
TableSample,
|
||
|
Update,
|
||
|
alias,
|
||
|
and_,
|
||
|
any_,
|
||
|
all_,
|
||
|
asc,
|
||
|
between,
|
||
|
bindparam,
|
||
|
case,
|
||
|
cast,
|
||
|
collate,
|
||
|
column,
|
||
|
delete,
|
||
|
desc,
|
||
|
distinct,
|
||
|
except_,
|
||
|
except_all,
|
||
|
exists,
|
||
|
extract,
|
||
|
false,
|
||
|
False_,
|
||
|
func,
|
||
|
funcfilter,
|
||
|
insert,
|
||
|
intersect,
|
||
|
intersect_all,
|
||
|
join,
|
||
|
label,
|
||
|
lateral,
|
||
|
literal,
|
||
|
literal_column,
|
||
|
modifier,
|
||
|
not_,
|
||
|
null,
|
||
|
nullsfirst,
|
||
|
nullslast,
|
||
|
or_,
|
||
|
outerjoin,
|
||
|
outparam,
|
||
|
over,
|
||
|
quoted_name,
|
||
|
select,
|
||
|
subquery,
|
||
|
table,
|
||
|
tablesample,
|
||
|
text,
|
||
|
true,
|
||
|
True_,
|
||
|
tuple_,
|
||
|
type_coerce,
|
||
|
union,
|
||
|
union_all,
|
||
|
update,
|
||
|
within_group
|
||
|
)
|
||
|
|
||
|
from .visitors import ClauseVisitor
|
||
|
|
||
|
|
||
|
def __go(lcls):
|
||
|
global __all__
|
||
|
from .. import util as _sa_util
|
||
|
|
||
|
import inspect as _inspect
|
||
|
|
||
|
__all__ = sorted(name for name, obj in lcls.items()
|
||
|
if not (name.startswith('_') or _inspect.ismodule(obj)))
|
||
|
|
||
|
from .annotation import _prepare_annotations, Annotated
|
||
|
from .elements import AnnotatedColumnElement, ClauseList
|
||
|
from .selectable import AnnotatedFromClause
|
||
|
_prepare_annotations(ColumnElement, AnnotatedColumnElement)
|
||
|
_prepare_annotations(FromClause, AnnotatedFromClause)
|
||
|
_prepare_annotations(ClauseList, Annotated)
|
||
|
|
||
|
_sa_util.dependencies.resolve_all("sqlalchemy.sql")
|
||
|
|
||
|
from . import naming
|
||
|
|
||
|
__go(locals())
|