]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Credit Sam Debruyn for the TEXT / NTEXT reflection fix
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 13 Aug 2026 13:26:05 +0000 (09:26 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 13 Aug 2026 13:26:05 +0000 (09:26 -0400)
Added the contributor credit line to the changelog entry for the
SQL Server TEXT / NTEXT reflection fix.  An equivalent fix had
already been proposed by the reporter in
https://github.com/sqlalchemy/sqlalchemy/pull/13452, which was not
noticed at the time the change was written.

References: #13451
Change-Id: I4f31b71a3a72da7979df5fdf6747dd39e0c5a3eb

doc/build/changelog/unreleased_20/13451.rst

index fa0502d221a6cb6f628a6207d2a41d328ee4f5c2..4e763c76cc1002312fd71354169f8e52d3f21a10 100644 (file)
@@ -10,4 +10,4 @@
     :class:`_mssql.TEXT` and :class:`_mssql.NTEXT` types now have a ``length``
     of ``None``, so that a reflected table emits valid DDL when re-created,
     which previously failed with "Cannot specify a column width on data type
-    text".
+    text".  Pull request courtesy Sam Debruyn.