diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-27 18:14:44 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-27 18:14:44 -0400 |
| commit | 1e2945d26c126f0aad0dbe1c06fdcb62d3172597 (patch) | |
| tree | 9210335c72267fea7ae9730ce4e92cd91b1d31d0 /lib/sqlalchemy/__init__.py | |
| parent | fe7322a05559534fcbacb8ae9ffc1707e3b2f261 (diff) | |
| download | sqlalchemy-1e2945d26c126f0aad0dbe1c06fdcb62d3172597.tar.gz | |
- Fixed bug where index reflection would mis-interpret indkey values
when using the pypostgresql adapter, which returns these values
as lists vs. psycopg2's return type of string.
[ticket:2855]
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index f40603258..b41f3f2bc 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -116,7 +116,7 @@ from .schema import ( from .inspection import inspect from .engine import create_engine, engine_from_config -__version__ = '0.9.0b1' +__version__ = '0.9.0b2' def __go(lcls): global __all__ |
