Hi All,

After upgrade on my VPS the one of the scripts started periodical crash.
After debugging I found that the problem in the filed that stores hashes. 
for some reason the script started crash on some particular hash values.
Below is the test script and attached is the database dump.

when ID is 380059 script crash, other ids, 380058 or 380060 for example, 
work OK.

from sqlalchemy import MetaData, Column, Integer, LargeBinary
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker

metadata = MetaData()
Base = declarative_base(metadata=metadata)

class Test(Base):
    __tablename__ = "test"
    id = Column(Integer, primary_key=True)
    hash = Column(LargeBinary(16))

engine = create_engine('')
Session = sessionmaker(bind=engine)
session = Session()

t = session.query(Test.hash).filter(Test.id == 380059).all()
print(t)


On this system doesn't work.
Python 3.6, SQLAlchemy 1.2.17

On this systems works fine.
Python 3.5, SQLAlchemy 1.1.14

Is it a bug or I just doing something wrong.

Thanks,
Teymur

-- 
SQLAlchemy - 
The Python SQL Toolkit and Object Relational Mapper

http://www.sqlalchemy.org/

To post example code, please provide an MCVE: Minimal, Complete, and Verifiable 
Example.  See  http://stackoverflow.com/help/mcve for a full description.
--- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at https://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to