-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall_sphere.sql
290 lines (277 loc) · 22.5 KB
/
install_sphere.sql
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
CREATE FUNCTION sdist RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sarea RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scenter RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircum RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION slength RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sswap RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION snpoints RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sstr RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION mysql_sphere_version RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION srcontainsl RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION slcontainsr RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION srnotcontainsl RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION slnotcontainsr RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION soverlaps RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION snotoverlaps RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sequal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION snotequal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION stransform RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sinverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_long RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_lat RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_x RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_y RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_z RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_point RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_point_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_phi RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_theta RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_psi RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_axes RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_invert RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_zxz RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_trans RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_trans_inv RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_radius RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contained_by_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contained_by_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_contained_by_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_contained_by_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_contained_by_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoint_contained_by_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_circle RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_circle_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION smeridian RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_beg RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_end RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_turn RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_crosses RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_crosses_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_overlap RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_contains_point RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_contains_point_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_contains_point_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_contains_point_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_line RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_line_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_overlap_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_overlap_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_overlap_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sline_overlap_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_inc RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_lrad RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_srad RETURNS REAL SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_point RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_point_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_point_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_point_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_ellipse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_ellipse_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_polygon RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_polygon_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_polygon_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_polygon_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_polygon RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_polygon_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_point RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_point_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_point_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_point_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_polygon RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_polygon_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_polygon_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_polygon_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_polygon RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_polygon_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_polygon_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_polygon_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_poly RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_poly_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE AGGREGATE FUNCTION spoly_add_point_aggr RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE AGGREGATE FUNCTION spoly_aggr RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_contains_point RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_contains_point_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_contains_point_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_contains_point_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_overlap_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spath_overlap_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_overlap_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_overlap_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_path RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION strans_path_inverse RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE AGGREGATE FUNCTION spath_add_point_aggr RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE AGGREGATE FUNCTION spath_aggr RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_sw RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_se RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_nw RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_ne RETURNS STRING SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_equal RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_equal_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_box RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_box_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_box_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_box_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_box RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_box_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_point RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_point_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_point_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_point_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_box RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_box_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_box_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION scircle_contains_box_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_circle RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_circle_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_circle_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_circle_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_line RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_line_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_line_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_line_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_box RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_box_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_box_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sellipse_contains_box_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_ellipse RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_ellipse_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_ellipse_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_ellipse_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_poly RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_poly_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_poly_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_poly_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_box RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_box_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_box_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION spoly_contains_box_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_poly RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_poly_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_poly_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_poly_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_contains_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_path RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_path_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_path_com RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
CREATE FUNCTION sbox_overlap_path_com_neg RETURNS INTEGER SONAME 'mysql_sphere_UDF.so';
INSTALL PLUGIN sphere SONAME 'mysql_sphere_UDF.so';