RDBI / rdbi-driver-postgresql

PostgreSQL database driver (DBD) for RDBI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for arrays

herwinw opened this issue · comments

The postgres database has support for arrays, for example with this syntax:

SELECT ARRAY[1,2]

When I try to fetch this with this driver, the result is the serialized version of this array, which is the string "{1,2}". This should be converted to a real Ruby array.