Ori Shalom

Results 4 comments of Ori Shalom

Following @doug-martin suggestion, this solution with `pq.Array` works: ```go dialect := goqu.Dialect("postgres") builder := dialect.Insert("posts"). Cols("title", "tags"). Vals(goqu.Vals{ "New Post", pq.Array([]string{"a", "b"}), // wrap value with pq.Array }) query, _,...

I wasn't aware of this PR and opened #517 with the same intention. Since this PR is already quite old and #517 is based on the current master (v3), maybe...

I initially thought it might be better not to add this check to goose to avoid the additional query to the DB if some users don't care about the error...

@mfridman I added another PR with the desired change. The old PR can be closed. I didn't manage to properly test vertica locally on my m1 silicon as it looks...