I am using a JDBC library that implements its own Array class. In order to work with said Array they cast it to Object[].
I am using Clojure and can't figure out how to cast that class to the Java Array.
(vec (.getArray results "array-row"))
Unable to convert: class com.github.housepower.jdbc.ClickHouseArray to Object[]
(into-array String (.getArray (.getArray results "array-row"))). Note the second call to.getArray, and then the "cast" viainto-array. I'd post an answer, but I can't test this.