mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Add a cardinality function for arrays.
Unlike our other array functions, this considers the total number of elements across all dimensions, and returns 0 rather than NULL when the array has no elements. But it seems that both of those behaviors are almost universally disliked, so hopefully that's OK. Marko Tiikkaja, reviewed by Dean Rasheed and Pavel Stehule
This commit is contained in:
parent
033b2343fa
commit
01f7808b3e
@ -337,6 +337,19 @@ SELECT array_length(schedule, 1) FROM sal_emp WHERE name = 'Carol';
|
||||
--------------
|
||||
2
|
||||
(1 row)
|
||||
</programlisting>
|
||||
|
||||
<function>cardinality</function> returns the total number of elements in an
|
||||
array across all dimensions. It is effectively the number of rows a call to
|
||||
<function>unnest</function> would yield:
|
||||
|
||||
<programlisting>
|
||||
SELECT cardinality(schedule) FROM sal_emp WHERE name = 'Carol';
|
||||
|
||||
cardinality
|
||||
-------------
|
||||
4
|
||||
(1 row)
|
||||
</programlisting>
|
||||
</para>
|
||||
</sect2>
|
||||
|
@ -11008,6 +11008,9 @@ SELECT NULLIF(value, '(none)') ...
|
||||
<indexterm>
|
||||
<primary>array_upper</primary>
|
||||
</indexterm>
|
||||
<indexterm>
|
||||
<primary>cardinality</primary>
|
||||
</indexterm>
|
||||
<indexterm>
|
||||
<primary>string_to_array</primary>
|
||||
</indexterm>
|
||||
@ -11164,6 +11167,17 @@ SELECT NULLIF(value, '(none)') ...
|
||||
<entry><literal>array_upper(ARRAY[1,8,3,7], 1)</literal></entry>
|
||||
<entry><literal>4</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>
|
||||
<literal>
|
||||
<function>cardinality</function>(<type>anyarray</type>)
|
||||
</literal>
|
||||
</entry>
|
||||
<entry><type>int</type></entry>
|
||||
<entry>returns the total number of elements in the array, or 0 if the array is empty</entry>
|
||||
<entry><literal>cardinality(ARRAY[[1,2],[3,4]])</literal></entry>
|
||||
<entry><literal>4</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>
|
||||
<literal>
|
||||
|
@ -1739,6 +1739,18 @@ array_length(PG_FUNCTION_ARGS)
|
||||
PG_RETURN_INT32(result);
|
||||
}
|
||||
|
||||
/*
|
||||
* array_cardinality:
|
||||
* returns the total number of elements in an array
|
||||
*/
|
||||
Datum
|
||||
array_cardinality(PG_FUNCTION_ARGS)
|
||||
{
|
||||
ArrayType *v = PG_GETARG_ARRAYTYPE_P(0);
|
||||
PG_RETURN_INT32(ArrayGetNItems(ARR_NDIM(v), ARR_DIMS(v)));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* array_ref :
|
||||
* This routine takes an array pointer and a subscript array and returns
|
||||
|
@ -53,6 +53,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 201312231
|
||||
#define CATALOG_VERSION_NO 201401211
|
||||
|
||||
#endif
|
||||
|
@ -840,6 +840,8 @@ DATA(insert OID = 2092 ( array_upper PGNSP PGUID 12 1 0 0 0 f f f f t f i 2
|
||||
DESCR("array upper dimension");
|
||||
DATA(insert OID = 2176 ( array_length PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 23 "2277 23" _null_ _null_ _null_ _null_ array_length _null_ _null_ _null_ ));
|
||||
DESCR("array length");
|
||||
DATA(insert OID = 3179 ( cardinality PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 23 "2277" _null_ _null_ _null_ _null_ array_cardinality _null_ _null_ _null_ ));
|
||||
DESCR("array cardinality");
|
||||
DATA(insert OID = 378 ( array_append PGNSP PGUID 12 1 0 0 0 f f f f f f i 2 0 2277 "2277 2283" _null_ _null_ _null_ _null_ array_push _null_ _null_ _null_ ));
|
||||
DESCR("append element onto end of array");
|
||||
DATA(insert OID = 379 ( array_prepend PGNSP PGUID 12 1 0 0 0 f f f f f f i 2 0 2277 "2283 2277" _null_ _null_ _null_ _null_ array_push _null_ _null_ _null_ ));
|
||||
|
@ -204,6 +204,7 @@ extern Datum array_dims(PG_FUNCTION_ARGS);
|
||||
extern Datum array_lower(PG_FUNCTION_ARGS);
|
||||
extern Datum array_upper(PG_FUNCTION_ARGS);
|
||||
extern Datum array_length(PG_FUNCTION_ARGS);
|
||||
extern Datum array_cardinality(PG_FUNCTION_ARGS);
|
||||
extern Datum array_larger(PG_FUNCTION_ARGS);
|
||||
extern Datum array_smaller(PG_FUNCTION_ARGS);
|
||||
extern Datum generate_subscripts(PG_FUNCTION_ARGS);
|
||||
|
@ -1455,6 +1455,48 @@ select array_length(array[[1,2,3], [4,5,6]], 3);
|
||||
|
||||
(1 row)
|
||||
|
||||
select cardinality(NULL::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
|
||||
(1 row)
|
||||
|
||||
select cardinality('{}'::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
0
|
||||
(1 row)
|
||||
|
||||
select cardinality(array[1,2,3]);
|
||||
cardinality
|
||||
-------------
|
||||
3
|
||||
(1 row)
|
||||
|
||||
select cardinality('[2:4]={5,6,7}'::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
3
|
||||
(1 row)
|
||||
|
||||
select cardinality('{{1,2}}'::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
2
|
||||
(1 row)
|
||||
|
||||
select cardinality('{{1,2},{3,4},{5,6}}'::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
6
|
||||
(1 row)
|
||||
|
||||
select cardinality('{{{1}},{{2,3},{3,4}}}'::int[]);
|
||||
cardinality
|
||||
-------------
|
||||
8
|
||||
(1 row)
|
||||
|
||||
select array_agg(unique1) from (select unique1 from tenk1 where unique1 < 15 order by unique1) ss;
|
||||
array_agg
|
||||
--------------------------------------
|
||||
|
@ -419,6 +419,14 @@ select array_length(array[[1,2,3], [4,5,6]], 1);
|
||||
select array_length(array[[1,2,3], [4,5,6]], 2);
|
||||
select array_length(array[[1,2,3], [4,5,6]], 3);
|
||||
|
||||
select cardinality(NULL::int[]);
|
||||
select cardinality('{}'::int[]);
|
||||
select cardinality(array[1,2,3]);
|
||||
select cardinality('[2:4]={5,6,7}'::int[]);
|
||||
select cardinality('{{1,2}}'::int[]);
|
||||
select cardinality('{{1,2},{3,4},{5,6}}'::int[]);
|
||||
select cardinality('{{{1}},{{2,3},{3,4}}}'::int[]);
|
||||
|
||||
select array_agg(unique1) from (select unique1 from tenk1 where unique1 < 15 order by unique1) ss;
|
||||
select array_agg(ten) from (select ten from tenk1 where unique1 < 15 order by unique1) ss;
|
||||
select array_agg(nullif(ten, 4)) from (select ten from tenk1 where unique1 < 15 order by unique1) ss;
|
||||
|
Loading…
Reference in New Issue
Block a user