pgsql-server/contrib/intarray README.intarray ...

From: momjian(at)postgresql(dot)org (Bruce Momjian - CVS)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql-server/contrib/intarray README.intarray ...
Date: 2002-08-10 20:38:29
Message-ID: 20020810203829.00C44475E34@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: momjian(at)postgresql(dot)org 02/08/10 16:38:29

Modified files:
contrib/intarray: README.intarray _int.c _int.sql.in
contrib/intarray/expected: _int.out
contrib/intarray/sql: _int.sql

Log message:
August 6, 2002
1. Reworked patch from Andrey Oktyabrski (ano(at)spider(dot)ru) with
functions: icount, sort, sort_asc, uniq, idx, subarray
operations: #, +, -, |, &

FUNCTIONS:

int icount(int[]) - the number of elements in intarray
int[] sort(int[], 'asc' | 'desc') - sort intarray
int[] sort(int[]) - sort in ascending order
int[] sort_asc(int[]),sort_desc(int[]) - shortcuts for sort
int[] uniq(int[]) - returns unique elements
int idx(int[], int item) - returns index of first intarray matching element
to item, or '0' if matching failed.
int[] subarray(int[],int START [, int LEN]) - returns part of intarray
starting from element number START (from 1)
and length LEN.
OPERATIONS:

int[] && int[] - overlap - returns TRUE if arrays has at least one common elements.
int[] @ int[] - contains - returns TRUE if left array contains right array
int[] ~ int[] - contained - returns TRUE if left array is contained in right array
# int[] - return the number of elements in array
int[] + int - push element to array ( add to end of array)
int[] + int[] - merge of arrays (right array added to the end of left one)
int[] - int - remove entries matched by right argument from array
int[] - int[] - remove left array from right
int[] | int - returns intarray - union of arguments
int[] | int[] - returns intarray as a union of two arrays
int[] & int[] - returns intersection of arrays

Oleg Bartunov

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2002-08-10 20:43:46 pgsql-server/ oc/src/sgml/ref/cluster.sgml rc/ ...
Previous Message Bruce Momjian - CVS 2002-08-10 20:29:18 pgsql-server/src backend/bootstrap/bootstrap.c ...