Commit 5e953114 authored by Teodor Sigaev's avatar Teodor Sigaev

Add intset() to README

parent ffaaf27e
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment