Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ be registered on a connection using :meth:`Connection.set_builtin_type_codec()
async def run():
conn = await asyncpg.connect()
# Assuming the hstore extension exists in the public schema.
await con.set_builtin_type_codec(
await conn.set_builtin_type_codec(
'hstore', codec_name='pg_contrib.hstore')
result = await con.fetchval("SELECT 'a=>1,b=>2'::hstore")
result = await conn.fetchval("SELECT 'a=>1,b=>2'::hstore")
assert result == {'a': 1, 'b': 2}

asyncio.get_event_loop().run_until_complete(run())
Expand Down