Add intset() to README (backpatch teodor's docs fix in HEAD).

This commit is contained in:
Tom Lane 2005-01-28 22:58:59 +00:00
parent 2bb33a8048
commit 49786de18e

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: