Hi When I query VIEW with ARRAY[] datatype (specifically UNSIGNED_INT ARRAY[] in my case) in sqlline it shows me this long string as value of the array column..
org.apache.phoenix.schema.types.PhoenixArray$PrimitiveIntPhoenixArray@d338d So am wondering if that expected behaviour and how this aligned with JDBC (ODBC) supported types? It looks like JDBC supports ARRAY datatype according to this http://db.apache.org/ojb/docu/guides/jdbc-types.html Should we actually do something so instead of org.apache.phoenix.schema.types.PhoenixArray$PrimitiveIntPhoenixArray@d338d we would see something like [1,2,3,555,666] etc? Thank you SB.
