-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
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
sql: support array_agg(record) #70029
Comments
You could do it by editing this code in distsql_physical_planner
|
You could also set the |
I don't think the issue is DistSQL -- the problem is the vectorized engine:
The
|
Ah ok, nvm, that does also block it from using the vectorized engine. I just wasn't seeing that since I was setting the property in the wrong place. |
On a quick glance, the vectorized engine should work here in the same manner as the row engine (because we're using the same representation - |
Needed for #69010.
In Postgres:
In CockroachDB:
Prototype:
Epic CRDB-10300
The text was updated successfully, but these errors were encountered: