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
Do you use the wheel package or built locally
(if locally, which version of Cython was used)?: Wheel package
Can you the issue be reproduced when running under uvloop?:
I have the following coroutine for setting up hstore support:
asyncdefsetup_connection(connection):
awaitconnection.execute('CREATE EXTENSION IF NOT EXISTS hstore')
awaitconnection.set_builtin_type_codec('hstore', codec_name='pg_contrib.hstore')
Everything works at first, but after an indeterminate number of async with pool.acquire() as connection: calls I eventually get the following exception: ValueError: cannot override codec for type 1419710
Is there another way I should be enabling hstore support with a connection pool?
Thanks for the great library.
The text was updated successfully, but these errors were encountered:
(if locally, which version of Cython was used)?: Wheel package
uvloop?:
I have the following coroutine for setting up hstore support:
I am creating a connection pool with:
Everything works at first, but after an indeterminate number of
async with pool.acquire() as connection:
calls I eventually get the following exception:ValueError: cannot override codec for type 1419710
Is there another way I should be enabling hstore support with a connection pool?
Thanks for the great library.
The text was updated successfully, but these errors were encountered: