From: Mike Bayer Date: Thu, 13 Aug 2026 13:26:05 +0000 (-0400) Subject: Credit Sam Debruyn for the TEXT / NTEXT reflection fix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=521d9af36b3410e2422ed16ae2811941aebd416d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Credit Sam Debruyn for the TEXT / NTEXT reflection fix 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 (cherry picked from commit 4695cf855a8da83cfefcc4b1f86682c7160a2037) --- diff --git a/doc/build/changelog/unreleased_20/13451.rst b/doc/build/changelog/unreleased_20/13451.rst index fa0502d221..4e763c76cc 100644 --- a/doc/build/changelog/unreleased_20/13451.rst +++ b/doc/build/changelog/unreleased_20/13451.rst @@ -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.