We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When querying something like SELECT Array[1,3] as col1
SELECT Array[1,3] as col1
just results in a row with a vector.
But when using something like: Select array_agg(t.textval) as col1 from table t group by true Give me a string.
Select array_agg(t.textval) as col1 from table t group by true
Is this a known issue. I expect to get a Vector as col1 result.
The text was updated successfully, but these errors were encountered:
relates to
saw something about that it only works for integers.
Sorry, something went wrong.
Yes I think that linked issue (#58) covers the feature request, since array_agg does work on integers:
array_agg
julia> execute(conn, "SELECT array_agg(t.ns) FROM (VALUES (1),(2)) AS t (ns);")[1,1] 2-element Vector{Union{Missing, Int32}}: 1 2
No branches or pull requests
When querying something like
SELECT Array[1,3] as col1
just results in a row with a vector.
But when using something like:
Select array_agg(t.textval) as col1 from table t group by true
Give me a string.
Is this a known issue. I expect to get a Vector as col1 result.
The text was updated successfully, but these errors were encountered: