prestodb/presto-go-client

`struct` type is unsupported

eveninglily opened this issue · 0 comments

A column with a struct type, e.g.

struct_col struct<i:int,s:string>

gets treated as a

row(i integer, s varchar)

which is currently unsupported by the ConvertValue function (

func (c *typeConverter) ConvertValue(v interface{}) (driver.Value, error) {
)

I see from #56 that you can query individual fields from there, but not the col as a whole.