:tags: bug, orm
:tickets: 5664
- Fixed bug in :meth:`_orm.Query.update` where objects in the
- :class:`_orm.Session` that were already expired would be unnecessarily
- SELECTed individually when they were refreshed by the "evaluate"
- synchronize strategy.
+ Fixed bug in :meth:`_query.Query.update` where objects in the
+ :class:`_ormsession.Session` that were already expired would be
+ unnecessarily SELECTed individually when they were refreshed by the
+ "evaluate"synchronize strategy.
\ No newline at end of file
:meth:`_sql.Insert.returning` is called multiple times, as this does not
yet support additive operation. Version 1.4 will support additive
operation for this. Additionally, any combination of the
- :meth:`_sql.Insert.returning` and :meth:`_sql.Insert.return_defaults`
+ :meth:`_sql.Insert.returning` and :meth:`_sql.ValuesBase.return_defaults`
methods now raises an error as these methods are mutually exclusive;
previously the operation would fail silently.
:versions: 1.4.0b2
Fixed bug involving the ``restore_load_context`` option of ORM events such
- as :meth:`_orm.InstanceEvents.load` such that the flag would not be carried
- along to subclasses which were mapped after the event handler were first
- established.
+ as :meth:`_ormevent.InstanceEvents.load` such that the flag would not be
+ carried along to subclasses which were mapped after the event handler were
+ first established.
"_schema": "sqlalchemy.schema",
"_types": "sqlalchemy.types",
"_expression": "sqlalchemy.sql.expression",
+ "_sql": "sqlalchemy.sql.expression",
+ "_dml": "sqlalchemy.sql.expression",
+ "_ddl": "sqlalchemy.schema",
"_functions": "sqlalchemy.sql.functions",
"_pool": "sqlalchemy.pool",
"_event": "sqlalchemy.event",
"_reflection": "sqlalchemy.engine.reflection",
"_orm": "sqlalchemy.orm",
"_query": "sqlalchemy.orm.query",
- "_ormevent": "sqlalchemy.orm.event",
+ "_ormevent": "sqlalchemy.orm.events",
+ "_ormsession": "sqlalchemy.orm.session",
"_ormexc": "sqlalchemy.orm.exc",
"_baked": "sqlalchemy.ext.baked",
"_associationproxy": "sqlalchemy.ext.associationproxy",