1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Add intset() to README

This commit is contained in:
Teodor Sigaev
2005-01-27 14:14:01 +00:00
parent ffaaf27eb4
commit 5e95311442

View File

@ -60,6 +60,13 @@ test=# select subarray('{1,2,3,2,1}'::int[],2,3);
{2,3,2}
(1 row)
int[] intset(int4) - casting int4 to int[]
test=# select intset(1);
intset
--------
{1}
(1 row)
OPERATIONS: