Closed
Description
After inserting around 25,000 items into a database, I'll start getting this error:
RuntimeError: no encoder for OID 1000
which I've isolated to a boolean array data type (boolean[7][24]). (The error doesn't occur when I don't set this value).
It is a nested list of 7*24 elements, which is converted from a numpy array to a python list via the numpy to_list()
method.
The asyncpg
version is 0.10.1