summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-07-24 12:24:18 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-07-24 12:24:18 -0400
commit9e092e339463e6c6e02cf85266ca49ab1c32832f (patch)
tree28ab48e3d5de7c9c76445c8c7a2aad5e83a591b2 /lib/sqlalchemy/__init__.py
parent552f1f135f66a1a3b9a1a8c3d5e1e6431e4fd234 (diff)
downloadsqlalchemy-9e092e339463e6c6e02cf85266ca49ab1c32832f.tar.gz
- An adjustment to the new Postgresql feature of reflecting storage
options and USING of :ticket:`3455` released in 1.0.6, to disable the feature for Postgresql versions < 8.2 where the ``reloptions`` column is not provided; this allows Amazon Redshift to again work as it is based on an 8.0.x version of Postgresql. Fix courtesy Pete Hollobon. references #3455
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
-rw-r--r--lib/sqlalchemy/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 9b8d06167..ad96e7e69 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -120,7 +120,7 @@ from .schema import (
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '1.0.8'
+__version__ = '1.0.9'
def __go(lcls):