summaryrefslogtreecommitdiff
path: root/contrib/intarray/expected
Commit message (Collapse)AuthorAgeFilesLines
* Rename contrib contains/contained-by operators to @> and <@, per discussion.Tom Lane2006-09-101-18/+14
|
* Make GIN opclass worked with intarray extensionsTeodor Sigaev2006-05-031-4/+54
|
* Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut2006-02-271-2/+2
| | | | | particular get rid of single quotes around language names and old WITH () construct.
* Update contrib regression tests for recent error message editing.Tom Lane2003-08-011-2/+2
|
* Error message editing in contrib (mostly by Joe Conway --- thanks Joe!)Tom Lane2003-07-241-5/+7
|
* Update expected file to match new _int.sql.Tom Lane2003-06-111-2/+2
|
* Changes:Bruce Momjian2003-06-111-0/+2
| | | | | | | | | | | 1 intarray: bugfix for int[]-int[] operation 2 intarray: split _int.c to several files (_int.c now is unused) 3 ntarray (gist__intbig_ops opclass): use special type for index storage 4 ltree (gist__ltree_ops opclass), intarray (gist__intbig_ops): optimize GiST's penalty and picksplit interface functions, now use Hemming distance. Teodor Sigaev
* Backend support for autocommit removed, per recent discussions. TheTom Lane2003-05-141-2/+2
| | | | | | only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
* Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change.Tom Lane2002-11-011-2/+2
|
* Update /contrib for "autocommit TO 'on'".Bruce Momjian2002-10-181-63/+63
| | | | | | | | | | Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
* Update contrib regression tests for OPAQUE datatype changes.Tom Lane2002-08-231-0/+2
|
* August 6, 2002Bruce Momjian2002-08-101-0/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Reworked patch from Andrey Oktyabrski (ano@spider.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
* Update required due to recent changes in FigureColname.Tom Lane2001-09-301-54/+54
|
* please apply attached patch to current CVS.Bruce Momjian2001-09-231-0/+331
| | | | | | | | | | | Changes: 1. Added support for boolean queries (indexable operator @@, looks like a @@ '1|(2&3)' 2. Some code cleanup and optimization Regards, Oleg
* Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane2001-08-211-2/+2
| | | | | | | | | | | | | | | | | | | | pgsql-hackers. pg_opclass now has a row for each opclass supported by each index AM, not a row for each opclass name. This allows pg_opclass to show directly whether an AM supports an opclass, and furthermore makes it possible to store additional information about an opclass that might be AM-dependent. pg_opclass and pg_amop now store "lossy" and "haskeytype" information that we previously expected the user to remember to provide in CREATE INDEX commands. Lossiness is no longer an index-level property, but is associated with the use of a particular operator in a particular index opclass. Along the way, IndexSupportInitialize now uses the syscaches to retrieve pg_amop and pg_amproc entries. I find this reduces backend launch time by about ten percent, at the cost of a couple more special cases in catcache.c's IndexScanOK. Initial work by Oleg Bartunov and Teodor Sigaev, further hacking by Tom Lane. initdb forced.
* Repair intarray's problems with TOASTed input, avoid scribbling onTom Lane2001-03-201-3/+3
| | | | | source data, improve split algorithm for intbig_ops. Oleg Bartunov with some kibitzing from Tom Lane.
* Update contrib intarray to Jan 25 version.Bruce Momjian2001-03-171-0/+27
|
* commit Oleg and Teodor's RD-tree implementation ... this provides theMarc G. Fournier2001-01-121-0/+19
regression tests for the GiST changes ... this should be integrated into the regular regression tests similar to Vadim's SPI contrib stuff ...