File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ CREATE FUNCTION set_sphere_output_precision(INT4)
2626 AS 'MODULE_PATHNAME', 'set_sphere_output_precision'
2727 LANGUAGE 'c';
2828
29+ CREATE FUNCTION reset_sphere_output_precision()
30+ RETURNS CSTRING
31+ AS 'MODULE_PATHNAME', 'reset_sphere_output_precision'
32+ LANGUAGE 'c';
33+
2934CREATE FUNCTION set_sphere_output(CSTRING)
3035 RETURNS CSTRING
3136 AS 'MODULE_PATHNAME', 'set_sphere_output'
@@ -175,4 +180,3 @@ CREATE OPERATOR <-> (
175180
176181COMMENT ON OPERATOR <-> (spoint, spoint) IS
177182 'distance between spherical points';
178-
Original file line number Diff line number Diff line change @@ -14,3 +14,8 @@ EXCEPTION
1414 WHEN OTHERS THEN RAISE;
1515END;
1616$$;
17+
18+ CREATE FUNCTION reset_sphere_output_precision()
19+ RETURNS CSTRING
20+ AS 'MODULE_PATHNAME', 'reset_sphere_output_precision'
21+ LANGUAGE 'c';
You can’t perform that action at this time.
0 commit comments