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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
ALTER EXTENSION pg_sphere ADD FUNCTION npoints(spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spoint(spath, int4);
ALTER EXTENSION pg_sphere ADD FUNCTION spoint(spath, float8);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_equal(spath, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR =(spath, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_equal_neg(spath, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR <>(spath, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION length(spath);
ALTER EXTENSION pg_sphere ADD OPERATOR @-@(NONE, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION swap(spath);
ALTER EXTENSION pg_sphere ADD OPERATOR -(NONE, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_path(spath, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spath, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_path_neg(spath, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spath, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_contains_point(spath, spoint);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_contains_point_com(spoint, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_contains_point_neg(spath, spoint);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_contains_point_com_neg(spoint, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION strans_path(spath, strans);
ALTER EXTENSION pg_sphere ADD OPERATOR +(spath, strans);
ALTER EXTENSION pg_sphere ADD FUNCTION strans_path_inverse(spath, strans);
ALTER EXTENSION pg_sphere ADD OPERATOR -(spath, strans);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_contains_path(scircle, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_contains_path_com(spath, scircle);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_contains_path_neg(scircle, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_contains_path_com_neg(spath, scircle);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_overlap_path(scircle, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(scircle, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_overlap_path_com(spath, scircle);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spath, scircle);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_overlap_path_neg(scircle, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(scircle, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION scircle_overlap_path_com_neg(spath, scircle);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spath, scircle);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_line(spath, sline);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spath, sline);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_line_com(sline, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(sline, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_line_neg(spath, sline);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spath, sline);
ALTER EXTENSION pg_sphere ADD FUNCTION spath_overlap_line_com_neg(sline, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(sline, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_contains_path(sellipse, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_contains_path_com(spath, sellipse);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_contains_path_neg(sellipse, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_contains_path_com_neg(spath, sellipse);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_overlap_path(sellipse, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(sellipse, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_overlap_path_com(spath, sellipse);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spath, sellipse);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_overlap_path_neg(sellipse, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(sellipse, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION sellipse_overlap_path_com_neg(spath, sellipse);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spath, sellipse);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_contains_path(spoly, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_contains_path_com(spath, spoly);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_contains_path_neg(spoly, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_contains_path_com_neg(spath, spoly);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_overlap_path(spoly, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spoly, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_overlap_path_com(spath, spoly);
ALTER EXTENSION pg_sphere ADD OPERATOR &&(spath, spoly);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_overlap_path_neg(spoly, spath);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spoly, spath);
ALTER EXTENSION pg_sphere ADD FUNCTION spoly_overlap_path_com_neg(spath, spoly);
ALTER EXTENSION pg_sphere ADD OPERATOR !&&(spath, spoly);
|