summaryrefslogtreecommitdiff
path: root/contrib/cube/sql/cube.sql
Commit message (Collapse)AuthorAgeFilesLines
* The attached patch provides cube with 4 functions for building cubesBruce Momjian2003-02-131-0/+18
| | | | | | | | | | | | | directly from float8 values. (As opposed to converting the values to strings and then parsing the strings.) The functions are: cube(float8) returns cube cube(float8,float8) returns cube cube(cube,float8) returns cube cube(cube,float8,float8) returns cube Bruno Wolff III
* SET autocommit no longer needed in /contrib because pg_regress.sh doesBruce Momjian2002-10-211-1/+0
| | | | it automatically now on regression session startup.
* Update /contrib for "autocommit TO 'on'".Bruce Momjian2002-10-181-0/+1
| | | | | | | | | | Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
* This is a comprehensive set of diffs (versus current CVS) that replaces thoseBruce Momjian2002-09-121-0/+10
| | | | | | | | | | | | attached to the same message with the Earth Distance patches. Recent changes include changing the subscript in one place I forgot in the previous bugfix patch. A couple of added regression tests, which should help catch this mistake if it reappears. I also put in a limit of 100 dimensions in cube_large and cube_in to prevent making it easy to create very large cubes. Changing one define in cubedata.h will raise the limit if some needs more dimensions. Bruno Wolff III
* The changes I have made are described in CHANGES. This was based onBruce Momjian2002-08-291-8/+68
| | | | | | | | | | | diffs to 7.3-devel and may not be applicable to 7.2. I have included a change covered by a previous bugfix patch I submitted (the problem with -.1 not being accepted by cube_in). It does not include a fix for the potential buffer overrun issue I reported for cube_yyerror in cubeparse.y. Bruno Wolff III
* Remove test of 'inf' since it introduces a platform dependency (someTom Lane2001-08-231-2/+0
| | | | | Unixen spell it 'Inf'). Not worth adding multiple expected files and a resultmap just for this.
* Gene Selkov's CUBE datatype (GiST example code)Tom Lane2000-12-111-0/+246