summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2018-03-30 11:22:30 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2018-03-30 11:22:30 -0400
commitf55c4f6bd2cb2f2b18e62159361ce7ecb5897396 (patch)
tree13dd4b79b15231c6558d392733d0a4db0e04ce40 /doc
parentf9c4b5ea7deca071d38e89cbd5643b98f78dd25f (diff)
downloadsqlalchemy-f55c4f6bd2cb2f2b18e62159361ce7ecb5897396.tar.gz
Filter non-integer characters from pyodbc SQL Server version
Adjusted the SQL Server version detection for pyodbc to only allow for numeric tokens, filtering out non-integers, since the dialect does tuple- numeric comparisons with this value. This is normally true for all known SQL Server / pyodbc drivers in any case. Change-Id: I4ab18a07e19231091b5e877ba1fccd5eda72a992 Fixes: #4227
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_12/4227.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_12/4227.rst b/doc/build/changelog/unreleased_12/4227.rst
new file mode 100644
index 000000000..992497d5a
--- /dev/null
+++ b/doc/build/changelog/unreleased_12/4227.rst
@@ -0,0 +1,9 @@
+.. change::
+ :tags: bug, mssql
+ :tickets: 4227
+ :versions: 1.3.0b1
+
+ Adjusted the SQL Server version detection for pyodbc to only allow for
+ numeric tokens, filtering out non-integers, since the dialect does tuple-
+ numeric comparisons with this value. This is normally true for all known
+ SQL Server / pyodbc drivers in any case.