Fixes: #7832
Change-Id: I241e4cbd1b5d6df46e49e29e4ab1cac021f2895c
session = Session(schema_engine)
+ When using the ORM, the schema translate feature is only supported as
+ **a single schema translate map per Session**. It will **not work** if
+ different schema translate maps are given on a per-statement basis, as
+ the ORM :class:`_orm.Session` does not take current schema translate
+ values into account for individual objects. In other words, all
+ objects loaded in a particular :class:`_orm.Session` must be based on the
+ **same** ``schema_translate_map``.
+
...