mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
Add intset() to README
This commit is contained in:
parent
ffaaf27eb4
commit
5e95311442
1 changed files with 7 additions and 0 deletions
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue