You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2018. It is now read-only.
The instrumentation is not covering the psycopg2 extensions API.
In order to reproduce this, try calling psycopg2.extensions.ISQLQuote.prepare() with the wrapped connection object, it will raise a
TypeError
must be psycopg2._psycopg.connection, not PGConnectionProxy
The instrumentation is not covering the psycopg2 extensions API.
In order to reproduce this, try calling
psycopg2.extensions.ISQLQuote.prepare()
with the wrapped connection object, it will raise aAn example of such an use-case is when trying to adapt an iterator in an array column type query.
To be specific, peewee is using such an adapter:
https://github.com/coleifer/peewee/blob/master/playhouse/postgres_ext.py#L109-L117
The text was updated successfully, but these errors were encountered: