From: Andrew Fitzgerald <131809+fitzoh@users.noreply.github.com> Date: Sat, 6 Feb 2021 02:45:20 +0000 (-0500) Subject: Update cookbook.rst references to #753 X-Git-Tag: rel_1_5_5~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a40309735daddd0c086f9f0f133341be5e63a7db;p=thirdparty%2Fsqlalchemy%2Falembic.git Update cookbook.rst references to #753 A fix for #753 was merged in November 2020 and released in 1.5.0 in January 2021. This updates the references to #753 in cookbook.rst to note that a fix for #753 has been released. --- diff --git a/docs/build/cookbook.rst b/docs/build/cookbook.rst index 1bfba30d..2f409d91 100644 --- a/docs/build/cookbook.rst +++ b/docs/build/cookbook.rst @@ -1315,7 +1315,7 @@ follows:: elem.table_name, schema=elem.schema ) as batch_ops: for table_elem in elem.ops: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(table_elem, "column"): table_elem.column = table_elem.column.copy() batch_ops.invoke(table_elem) @@ -1323,7 +1323,7 @@ follows:: elif hasattr(elem, "ops"): stack.extend(elem.ops) else: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(elem, "column"): elem.column = elem.column.copy() operations.invoke(elem) @@ -1396,7 +1396,7 @@ at :func:`.autogenerate.compare_metadata`:: elem.table_name, schema=elem.schema ) as batch_ops: for table_elem in elem.ops: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(table_elem, "column"): table_elem.column = table_elem.column.copy() batch_ops.invoke(table_elem) @@ -1404,7 +1404,7 @@ at :func:`.autogenerate.compare_metadata`:: elif hasattr(elem, "ops"): stack.extend(elem.ops) else: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(elem, "column"): elem.column = elem.column.copy() operations.invoke(elem)