We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Yesterday released new version of SQLAlchemy (1.2.0) and new release incompatible with aiopg:
mymodule.py:42: in fetchone result = await conn.execute(query) .tox/py36-tests/lib/python3.6/site-packages/aiopg/utils.py:72: in __await__ resp = yield from self._coro .tox/py36-tests/lib/python3.6/site-packages/aiopg/sa/connection.py:116: in _execute return ResultProxy(self, cursor, self._dialect, result_map) .tox/py36-tests/lib/python3.6/site-packages/aiopg/sa/result.py:234: in __init__ self._metadata = ResultMetaData(self, cursor.description) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <aiopg.sa.result.ResultMetaData object at 0x7f0417f6a550> result_proxy = <aiopg.sa.result.ResultProxy object at 0x7f0417f6a5c0> metadata = (Column(name='column_0', type_code=23, display_size=None, internal_size=4, precision=None, scale=None, null_ok=None), ...Column(name='column_2', type_code=3802, display_size=None, internal_size=-1, precision=None, scale=None, null_ok=None)) def __init__(self, result_proxy, metadata): self._processors = processors = [] result_map = {} if result_proxy._result_map: result_map = {elem[0]: elem[3] for elem in result_proxy._result_map} # We do not strictly need to store the processor in the key mapping, # though it is faster in the Python version (probably because of the # saved attribute lookup self._processors) self._keymap = keymap = {} self.keys = [] dialect = result_proxy.dialect > typemap = dialect.dbapi_type_map E AttributeError: 'PGDialect_psycopg2' object has no attribute 'dbapi_type_map'
The text was updated successfully, but these errors were encountered:
Fix SQLAlchemy 1.2.0 compatibility (aio-libs#411)
4422b78
c941c24
2be7e0f
Fix SQLAlchemy 1.2.0 compatibility (#411) (#412)
552e0a8
No branches or pull requests
Hello,
Yesterday released new version of SQLAlchemy (1.2.0) and new release incompatible with aiopg:
The text was updated successfully, but these errors were encountered: