postgres-async-driver
postgres-async-driver copied to clipboard
Support NAME data type
Simply add the NAME
oid to the StringConversions
and NAME_ARRAY
to the array conv. It is used for object names in postgres.
I ran into this as well. As a stopgap, I produced a new type wrapper around String to use the user defined type conversion logic and it seems to work fine.
I just did a ::VARCHAR
in the query to cast.