1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
ALTER EXTENSION pg_sphere ADD FUNCTION spherekey_in(CSTRING);
ALTER EXTENSION pg_sphere ADD FUNCTION spherekey_out(spherekey);
ALTER EXTENSION pg_sphere ADD TYPE spherekey;
ALTER EXTENSION pg_sphere ADD FUNCTION g_spherekey_decompress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spherekey_union(bytea, internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spherekey_picksplit(internal, internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spoint_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spoint_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS spoint USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_scircle_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_scircle_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS scircle USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_sline_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_sline_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS sline USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_sellipse_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_sellipse_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS sellipse USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_spoly_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spoly_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS spoly USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_spath_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_spath_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS spath USING gist;
ALTER EXTENSION pg_sphere ADD FUNCTION g_sbox_compress(internal);
ALTER EXTENSION pg_sphere ADD FUNCTION g_sbox_consistent(internal, internal, int4, oid, internal);
ALTER EXTENSION pg_sphere ADD OPERATOR CLASS sbox USING gist;
|