]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Parse for Postgresql version w/ "beta"
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Jun 2017 16:30:22 +0000 (12:30 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Jun 2017 16:30:22 +0000 (12:30 -0400)
commitb6d3f60791834ead92564fc58afebc2c3eb4a2ff
treeca4edd3264d3d643e5f506ee5bfd35be9543518d
parentacf64c4178169b765f3f7ae492b1774955cf541f
Parse for Postgresql version w/ "beta"

Continuing with the fix that correctly handles Postgresql
version string "10devel" released in 1.1.8, an additional regexp
bump to handle version strings of the form "10beta1".   While
Postgresql now offers better ways to get this information, we
are sticking w/ the regexp at least through 1.1.x for the least
amount of risk to compatibility w/ older or alternate Postgresql
databases.

Change-Id: I12ddb06465f7dcf80563c27632441ef5963f60d4
Fixes: #4005
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/dialects/postgresql/base.py
test/dialect/postgresql/test_dialect.py