diff options
Diffstat (limited to 'doc/build/changelog/migration_11.rst')
-rw-r--r-- | doc/build/changelog/migration_11.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/build/changelog/migration_11.rst b/doc/build/changelog/migration_11.rst index c5ac891d6..c40d5a9c1 100644 --- a/doc/build/changelog/migration_11.rst +++ b/doc/build/changelog/migration_11.rst @@ -220,7 +220,7 @@ This includes: Previously, the indexed access to ``col[5]`` would return an expression of type :class:`.Integer` where we could no longer perform indexed access - for the remaining dimensions. + for the remaining dimensions, unless we used :func:`.cast` or :func:`.type_coerce`. * The :class:`~.postgresql.JSON` and :class:`~.postgresql.JSONB` types now mirror what Postgresql itself does for indexed access. This means that all indexed access for @@ -343,6 +343,10 @@ to:: session.add_all([obj1, obj2]) session.commit() +.. seealso:: + + :ref:`change_3514` + :ticket:`3514` Dialect Improvements and Changes - MySQL |