gpt4 book ai didi

python - 如何修复 SQLAlchemy : SAWarning: DELETE statement on table expected to delete 1 row(s); 0 were matched

转载 作者:太空狗 更新时间:2023-10-30 01:27:55 27 4
gpt4 key购买 nike

我正在使用带有 PostgreSQL 的 SQLAlchemy 使用有向图数据模型构建一个 Python Flask 应用程序。我有设置删除级联时遇到问题。虽然经过初步检查,删除似乎可行,但我不确定我是否可能会以我不理解的方式破坏事物,因为我收到以下警告:

SAWarning: DELETE statement on table 'edges' expected to delete 1 row(s); 0 were matched.  
Please set confirm_deleted_rows=False within the mapper configuration to prevent this warning. (table.description, expected,rows_matched)

这是我的数据模型的核心。

class Node(db.Model):
__tablename__ = 'nodes'

__mapper_args__ = {
'polymorphic_on': type,
'polymorphic_identity': 'node'
}

id = Column(BigInteger, primary_key=True)
type = Column(String)

in_edges = relationship("Edge", cascade="save-update, merge, delete", foreign_keys="Edge.dest", back_populates='dest_node')
out_edges = relationship("Edge", cascade="save-update, merge, delete", foreign_keys="Edge.src", back_populates='src_node')


class Edge(db.Model):
__tablename__ = 'edges'

__mapper_args__ = {
'polymorphic_on': type,
'polymorphic_identity': 'edge'
}

type = Column(String, primary_key="True")

src = Column(Integer, ForeignKey('nodes.id'), primary_key=True)
dest = Column(Integer, ForeignKey('nodes.id'), primary_key=True)

src_node = relationship("Node", foreign_keys=[src], back_populates='out_edges')
dest_node = relationship("Node", foreign_keys=[dest], back_populates='in_edges')

节点由边以定向方式连接。 Edge 将 src 节点连接到 dest 节点。需要注意的一件事是Node 的主键为 id,而 Edge 的主键为 typesrcdest。自从你不能将 src 或 dest 设置为 NULL 的边,如果删除节点,则以任何方式引用它的所有边都必须也被删除。

在模型中,我在 Node 和 Edge 上创建了 SQLAlchemy relationships,它们相互填充。在节点上端,我可以访问传入和传出 Edge,并且 Edge 可以访问它连接的节点。

我想做的是删除图表的一个子集。为此,我从一个节点开始遍历图表并遍历节点的 out_edges。我只是明确删除节点。我依靠级联删除我已经对节点的两个关系进行了配置,以负责删除边。

当如图所示配置时,我似乎总是收到警告,这似乎表明某些内容没有被删除。但是,如果我删除节点 in_edges 上的级联删除,警告就会消失。

我认为可能发生的情况是,由于 Edge 必须同时存在两个节点,因此当我删除 src 节点时,它删除传出边,然后当我删除那些边的目标节点时,它会寻找传入边, 但它已经被删除了。

所以删除级联修复了警告并在某些情况下有效,但有时我删除的节点是有一个传入边,其 src 节点不是我在步行时访问的节点。因此,确保两者都至关重要关系会导致删除级联,因此我认为以这种方式抑制警告不是正确的做法。

谁能解释一下发生了什么?忽略这个安全吗?我做错了吗?

最佳答案

我认为你的问题与https://bitbucket.org/zzzeek/sqlalchemy/issues/2403/work-around-mysql-innodb-bug-need-per有关

你可以试试这段代码。

class Edge(db.Model):
__tablename__ = 'edges'

__mapper_args__ = {
'polymorphic_on': type,
'polymorphic_identity': 'edge',
'confirm_deleted_rows': False
}

关于python - 如何修复 SQLAlchemy : SAWarning: DELETE statement on table expected to delete 1 row(s); 0 were matched,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36002638/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com