You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
select(...).final() is not applying the final clause to the query when we use in ORM mode
To Reproduce class SimpleEntity: __tablename__ = 'xxx' a = Column(types.String, nullable=False, primary_key=True) b = Column(types.String, nullable=False, primary_key=True) c = Column(types.String, nullable=False)
select(SimpleEntity).final().where(...)
Expected behavior
FINAL clause applied to the query
Describe the bug
select(...).final() is not applying the final clause to the query when we use in ORM mode
To Reproduce
class SimpleEntity:
__tablename__ = 'xxx' a = Column(types.String, nullable=False, primary_key=True) b = Column(types.String, nullable=False, primary_key=True) c = Column(types.String, nullable=False)
select(SimpleEntity).final().where(...)
Expected behavior
FINAL clause applied to the query
Versions
clickhouse-sqlalchemy: 0.3.2, sqlalchemy:2.0.35, python: 3.11
The text was updated successfully, but these errors were encountered: