You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Collects all the input values, including nulls, into an array. (NOT SUPPORTED)|
3870
3870
No|
3871
3871
```sql
3872
-
#SELECT array_agg(x) FROM (VALUES (1),(2)) a(x) → {1,2}
3872
+
SELECT array_agg(x) FROM (VALUES (1),(2)) a(x) → {1,2}
3873
3873
```||
3874
3874
||array_agg ( anyarray ) → anyarray|
3875
3875
Concatenates all the input arrays into an array of one higher dimension. (The inputs must all have the same dimensionality, and cannot be empty or null.) (NOT SUPPORTED)|
3876
3876
No|
3877
3877
```sql
3878
-
#SELECT array_agg(x) FROM (VALUES (Array[1,2]),(Array[3,4])) a(x) → {{1,2},{3,4}}
3878
+
SELECT array_agg(x) FROM (VALUES (Array[1,2]),(Array[3,4])) a(x) → {{1,2},{3,4}}
Collects all the input values, including nulls, into an array. (NOT SUPPORTED)|
3870
3870
No|
3871
3871
```sql
3872
-
#SELECT array_agg(x) FROM (VALUES (1),(2)) a(x) → {1,2}
3872
+
SELECT array_agg(x) FROM (VALUES (1),(2)) a(x) → {1,2}
3873
3873
```||
3874
3874
||array_agg ( anyarray ) → anyarray|
3875
3875
Concatenates all the input arrays into an array of one higher dimension. (The inputs must all have the same dimensionality, and cannot be empty or null.) (NOT SUPPORTED)|
3876
3876
No|
3877
3877
```sql
3878
-
#SELECT array_agg(x) FROM (VALUES (Array[1,2]),(Array[3,4])) a(x) → {{1,2},{3,4}}
3878
+
SELECT array_agg(x) FROM (VALUES (Array[1,2]),(Array[3,4])) a(x) → {{1,2},{3,4}}
0 commit comments