Percona-Lab / clickhousedb_fdw

PostgreSQL's Foreign Data Wrapper For ClickHouse
Other
201 stars 24 forks source link

Support Array() types? #28

Open mzealey opened 3 years ago

mzealey commented 3 years ago

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?