diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-28 22:58:59 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-28 22:58:59 +0000 |
commit | 49786de18eb59af1de4b78ddad60d7927eeaeaf4 (patch) | |
tree | b08bc22013b7d1cfc6c5f45d74832ade717a8419 | |
parent | 2bb33a8048d3b63bfa350ec8215cc34a513397be (diff) |
Add intset() to README (backpatch teodor's docs fix in HEAD).
-rw-r--r-- | contrib/intarray/README.intarray | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/intarray/README.intarray b/contrib/intarray/README.intarray index a1ffef1e4a8..f850deebcea 100644 --- a/contrib/intarray/README.intarray +++ b/contrib/intarray/README.intarray @@ -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: |