Paweł Kowalski
Results
2
issues of
Paweł Kowalski
I went through [official guide](https://cloud.google.com/sql/docs/postgres/connect-container-engine) from Google on how to connect to Cloud PostgreSQL. Unfortunately I get this traceback in logs: ``` 2017-08-16T13:05:54.966574354Z Traceback (most recent call last): 2017-08-16T13:05:54.966585403Z File...
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
bug