For request SELECT str_field FROM some_table rows with empty str_field will be parsed not correctly in cause of next:
We will get an empty record instead of record with empty string.
Fix looks like to be trivial. What do you think about removing this
if? Could it affects any other cases?
For request
SELECT str_field FROM some_tablerows with emptystr_fieldwill be parsed not correctly in cause of next:aiochclient/aiochclient/records.py
Line 35 in c860084
We will get an empty record instead of record with empty string.
Fix looks like to be trivial. What do you think about removing this
if? Could it affects any other cases?