]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Use regexp to parse cx_oracle version string
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 9 May 2017 16:17:04 +0000 (12:17 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 9 May 2017 16:18:10 +0000 (12:18 -0400)
commitab1eb8109221588c19d72c75af01ea4e8cd68e3f
tree50fb97706b2dcbc86ee0012a68ea6db98de27942
parente3035661f4d341e59201a44a3b3a8ed49d5114fa
Use regexp to parse cx_oracle version string

Fixed bug in cx_Oracle dialect where version string parsing would
fail for cx_Oracle version 6.0b1 due to the "b" character.  Version
string parsing is now via a regexp rather than a simple split.

Change-Id: I2af7172b0d7184e3ea3bd051e9fa8d6ca2a571cd
Fixes: #3975
(cherry picked from commit 50484eda7787c3e83c9c88c1841fc63b348ca23c)
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/dialects/oracle/cx_oracle.py
test/dialect/test_oracle.py