mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
/contrib/cube improvements:
Update the calling convention for all external facing functions. By external facing, I mean all functions that are directly referenced in cube.sql. Prior to my update, all functions used the older V0 calling convention. They now use V1. New Functions: cube(float[]), which makes a zero volume cube from a float array cube(float[], float[]), which allows the user to create a cube from two float arrays; one for the upper right and one for the lower left coordinate. cube_subset(cube, int4[]), to allow you to reorder or choose a subset of dimensions from a cube, using index values specified in the array. Joshua Reich
This commit is contained in:
@ -46,6 +46,12 @@ DROP FUNCTION cube(cube, float8);
|
||||
|
||||
DROP FUNCTION cube(float8, float8);
|
||||
|
||||
DROP FUNCTION cube(float8[], float8[]);
|
||||
|
||||
DROP FUNCTION cube(float8[]);
|
||||
|
||||
DROP FUNCTION cube_subset(cube, int4[]);
|
||||
|
||||
DROP FUNCTION cube(float8);
|
||||
|
||||
DROP FUNCTION cube_ur_coord(cube, int4);
|
||||
|
Reference in New Issue
Block a user