(obj)
| 1199 | return result |
| 1200 | |
| 1201 | def hstore_encoder(obj): |
| 1202 | return ','.join('{}=>{}'.format(k, v) for k, v in obj.items()) |
| 1203 | |
| 1204 | try: |
| 1205 | await self.con.set_type_codec('hstore', encoder=hstore_encoder, |
nothing calls this directly
no outgoing calls
no test coverage detected