我构建的工具严重依赖SQLAlchemy的查询构建器,但允许用户在模型不足的情况下指定要加入的子查询的文本文本。
然而,当我尝试这样的事情时:
q = session.query().from_statement(sa.text(subquery_text)).subquery(subquery_name)
......发生异常:
File ".../lib/sqlalchemy/orm/query.py", line 473, in subquery
return q.alias(name=name)
AttributeError: 'AnnotatedTextClause' object has no attribute 'alias'
在SQLAlchemy的代码库中查看.subquery()
的实现,可以清楚地了解我们如何从Query对象到AnnotatedTextClause:
def subquery(self, name=None, with_labels=False, reduce_columns=False):
# docstring in the original omitted here for brevity
q = self.enable_eagerloads(False)
if with_labels:
q = q.with_labels()
q = q.statement
if reduce_columns:
q = q.reduce_columns()
return q.alias(name=name)
......但我发现自己对于我试图做的事情是否有可能是不可能的,如果是的话,我将如何实现。