We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c99beb commit 7989203Copy full SHA for 7989203
docs/usage.rst
@@ -321,7 +321,7 @@ be registered on a connection using :meth:`Connection.set_builtin_type_codec()
321
await con.set_builtin_type_codec(
322
'hstore', codec_name='pg_contrib.hstore')
323
result = await con.fetchval("SELECT 'a=>1,b=>2'::hstore")
324
- assert result == {'a': 1, 'b': 2}
+ assert result == {'a': '1', 'b': '2'}
325
326
asyncio.get_event_loop().run_until_complete(run())
327
0 commit comments