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
PG checks the dimensions when constructing, concatenating and aggregating multidimensional arrays, but we currently don't.
# constructing select array[array[1,2], array[3]]; # concatenating select array[array[1,2]] || array[array[3]]; # batch aggregating select array_agg(a) from (values (array[array[1,2]]), (array[array[3]])) t(a); # streaming aggregating create table t (a int[][]); insert into t values (array[array[1,2]]), (array[array[3]]); create materialized view mv as select array_agg(a) as agg from t; select * from mv;
These queries all fail on PG, but succeed on RW.
#5060 (comment)
The text was updated successfully, but these errors were encountered:
Ah, seems to be duplicate with #3811. Close this for now.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
PG checks the dimensions when constructing, concatenating and aggregating multidimensional arrays, but we currently don't.
To Reproduce
Expected behavior
These queries all fail on PG, but succeed on RW.
Additional context
#5060 (comment)
The text was updated successfully, but these errors were encountered: