zoukankan      html  css  js  c++  java
  • Sqlachemy的警告SAWarning: The IN-predicate on "sns_object.BIZ_ID" was invoked with an empty sequence. This results in a contradiction, which nonetheless can be expensive to evaluate.

    我在使用db_session.query,查询的时候idlist是个空值时候,执行下面的语句就会出现警告。
    其中后面delete(synchronize_session=False)是删除前面的一堆查询相当于查出符合条件的数据。
    synchronize_session用于query在进行delete or update操作时,对session的同步策略。False - 不对session进行同步,直接进行delete or update操作。
            db_session.query(CommentInfo).filter(CommentInfo.BIZ_ID.in_(idlist)).filter(CommentInfo.MEDIA_TYPE=="INS").delete(synchronize_session=False)
    

      

    def delete_exist_bizid(self,dics):
        idlist=dics.get("BIZ_ID")
        db_session.query(CommentInfo).filter(CommentInfo.BIZ_ID.in_(idlist)).filter(CommentInfo.MEDIA_TYPE=="INS").delete(synchronize_session=False)
        db_session.commit()
    if __name__=="__main__": dics={"BIZ_ID":[]} SaveData().delete_exist_bizid(dics)

      

    解决方案:加一个判断条件当BIZ_ID的值不为空的时候,才进行后面删除操作。 
  • 相关阅读:
    通过连接池和字段索引,提升单点登录cas的性能
    crc16.c
    modbus.c
    sciencesoftware科学软件
    C++ ASSERT() 断言机制
    sessionKey
    main函数中argc理解
    compile,build和execute的区别
    Linux vi 中移动光标 命令
    OCP读书笔记(2)
  • 原文地址:https://www.cnblogs.com/c-x-a/p/8863950.html
Copyright © 2011-2022 走看看