Having field defined this way `Column('abc', JSON)`, I have to use `json.loads` to get dict: ``` rows = await pg.fetch(sql) async for row in rows: print(json.loads(row.abc)) ``` `row.abc` is string