File: pgs_gist.sql.in

package info (click to toggle)
pgsphere 1.1.1%2B2020-10-20-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,700 kB
  • sloc: ansic: 12,032; sql: 6,091; cpp: 853; makefile: 216; perl: 168; yacc: 145; xml: 66; lex: 55; sh: 1
file content (27 lines) | stat: -rw-r--r-- 2,028 bytes parent folder | download | duplicates (2)
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;