clickhousedb_fdw
clickhousedb_fdw copied to clipboard
Support Array() types?
I can access Array
types by calling them varchar
and then parsing them with ('{' || left(right(field, -1), -1) || '}')::int[]
, perhaps in a local view. But is there some way for native support for Array type to be added to this driver?