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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
--------------------------------------------------------------------
-- BRIN support --
--------------------------------------------------------------------
--------------------------------
-- the Operators --
--------------------------------
CREATE FUNCTION spoint_overlaps_spherekey(spoint, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spoint_overlaps_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION spoint_contains_spherekey(spoint, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spoint_contains_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION spoint_iscontained_spherekey(spoint, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spoint_iscontained_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION sbox_overlaps_spherekey(sbox, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'sbox_overlaps_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION sbox_contains_spherekey(sbox, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'sbox_contains_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION sbox_iscontained_spherekey(sbox, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'sbox_iscontained_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION spherekey_overlaps_spherekey(spherekey, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spherekey_overlaps_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION spherekey_contains_spherekey(spherekey, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spherekey_contains_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE FUNCTION spherekey_iscontained_spherekey(spherekey, spherekey)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spoint_iscontained_spherekey'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE OPERATOR && (
LEFTARG = spoint,
RIGHTARG = spherekey,
PROCEDURE = spoint_overlaps_spherekey,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (spoint, spherekey) IS
'true, if the spherical point overlaps a spherekey';
CREATE OPERATOR @> (
LEFTARG = spoint,
RIGHTARG = spherekey,
PROCEDURE = spoint_contains_spherekey,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR @> (spoint, spherekey) IS
'true, if the spherical point contains a spherekey - just needed to define the OpFamily';
CREATE OPERATOR <@ (
LEFTARG = spoint,
RIGHTARG = spherekey,
PROCEDURE = spoint_iscontained_spherekey,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <@ (spoint, spherekey) IS
'true, if the spherical point is contained in a spherekey';
CREATE OPERATOR && (
LEFTARG = sbox,
RIGHTARG = spherekey,
PROCEDURE = sbox_overlaps_spherekey,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (sbox, spherekey) IS
'true, if the spherical box overlaps a spherekey';
CREATE OPERATOR @> (
LEFTARG = sbox,
RIGHTARG = spherekey,
PROCEDURE = sbox_contains_spherekey,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR @> (sbox, spherekey) IS
'true, if the spherical box contains a spherekey';
CREATE OPERATOR <@ (
LEFTARG = sbox,
RIGHTARG = spherekey,
PROCEDURE = sbox_iscontained_spherekey,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <@ (sbox, spherekey) IS
'true, if the spherical box is contained in a spherekey';
CREATE OPERATOR && (
LEFTARG = spherekey,
RIGHTARG = spherekey,
PROCEDURE = spherekey_overlaps_spherekey,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (spherekey, spherekey) IS
'true, if the spherekey overlaps another spherekey';
CREATE OPERATOR @> (
LEFTARG = spherekey,
RIGHTARG = spherekey,
PROCEDURE = spherekey_contains_spherekey,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR @> (spoint, spherekey) IS
'true, if the spherekey contains another spherekey';
CREATE OPERATOR <@ (
LEFTARG = spherekey,
RIGHTARG = spherekey,
PROCEDURE = spherekey_iscontained_spherekey,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <@ (spherekey, spherekey) IS
'true, if the spherical point is contained in another spherekey';
---------------------------------------------
-- create operators with crossed datatypes --
---------------------------------------------
CREATE FUNCTION spherekey_overlaps_spoint(spherekey, spoint)
RETURNS boolean
AS $$
SELECT $2 && $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE FUNCTION spherekey_contains_spoint(spherekey, spoint)
RETURNS boolean
AS $$
SELECT $2 <@ $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE FUNCTION spherekey_iscontained_spoint(spherekey, spoint)
RETURNS boolean
AS $$
SELECT $2 @> $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE FUNCTION spherekey_overlaps_sbox(spherekey, sbox)
RETURNS boolean
AS $$
SELECT $2 && $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE FUNCTION spherekey_contains_sbox(spherekey, sbox)
RETURNS boolean
AS $$
SELECT $2 <@ $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE FUNCTION spherekey_iscontained_sbox(spherekey, sbox)
RETURNS boolean
AS $$
SELECT $2 @> $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE OPERATOR && (
LEFTARG = spherekey,
RIGHTARG = spoint,
PROCEDURE = spherekey_overlaps_spoint,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (spherekey, spoint) IS
'true, if the spherekey overlaps a spoint';
CREATE OPERATOR @> (
LEFTARG = spherekey,
RIGHTARG = spoint,
PROCEDURE = spherekey_contains_spoint,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR @> (spherekey, spoint) IS
'true, if the spherekey contains a spherical point';
CREATE OPERATOR <@ (
LEFTARG = spherekey,
RIGHTARG = spoint,
PROCEDURE = spherekey_iscontained_spoint,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <@ (spherekey, spoint) IS
'true, if the spherekey is contained in a spherical point - just needed to define the OpFamily';
CREATE OPERATOR && (
LEFTARG = spherekey,
RIGHTARG = sbox,
PROCEDURE = spherekey_overlaps_sbox,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (spherekey, sbox) IS
'true, if the spherekey overlaps a spherical point';
CREATE OPERATOR @> (
LEFTARG = spherekey,
RIGHTARG = sbox,
PROCEDURE = spherekey_contains_sbox,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR @> (spherekey, sbox) IS
'true, if the spherekey contains a spherical point';
CREATE OPERATOR <@ (
LEFTARG = spherekey,
RIGHTARG = sbox,
PROCEDURE = spherekey_iscontained_sbox,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <@ (spherekey, sbox) IS
'true, if the spherekey is contained in a spherical point';
-------------------------------------------------
-- create operators that will actually be used --
-------------------------------------------------
CREATE FUNCTION spoint_overlaps_sbox(spoint, sbox)
RETURNS boolean
AS 'MODULE_PATHNAME', 'spoint_overlaps_sbox'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE OPERATOR && (
LEFTARG = spoint,
RIGHTARG = sbox,
PROCEDURE = spoint_overlaps_sbox,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (spoint, sbox) IS
'true, if the spherical point overlaps a spherical box';
------------------------------------------------------------
-- Complementar operators, needed for OpFamily definition --
------------------------------------------------------------
CREATE FUNCTION sbox_overlaps_spoint(sbox, spoint)
RETURNS boolean
AS $$
SELECT $2 && $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE OPERATOR && (
LEFTARG = sbox,
RIGHTARG = spoint,
PROCEDURE = sbox_overlaps_spoint,
COMMUTATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (sbox, spoint) IS
'true, if the spherical box overlaps a spherical point';
CREATE FUNCTION sbox_iscontained_spoint(sbox, spoint)
RETURNS boolean
AS 'MODULE_PATHNAME', 'sbox_iscontained_spoint'
LANGUAGE 'c' IMMUTABLE STRICT;
CREATE OPERATOR <@ (
LEFTARG = sbox,
RIGHTARG = spoint,
PROCEDURE = sbox_iscontained_spoint,
COMMUTATOR = '@>',
RESTRICT = contsel,
JOIN = contjoinsel
);
CREATE FUNCTION spoint_contains_sbox(spoint, sbox)
RETURNS boolean
AS $$
SELECT $2 <@ $1;
$$ LANGUAGE SQL IMMUTABLE STRICT;
CREATE OPERATOR @> (
LEFTARG = spoint,
RIGHTARG = sbox,
PROCEDURE = spoint_contains_sbox,
COMMUTATOR = '<@',
RESTRICT = contsel,
JOIN = contjoinsel
);
--------------------------------
-- the OpFamily --
--------------------------------
CREATE OPERATOR FAMILY brin_inclusion_spheric_ops USING brin;
CREATE OR REPLACE FUNCTION spoint_brin_inclusion_add_value(internal, internal, internal, internal)
RETURNS boolean
AS 'MODULE_PATHNAME','spoint_brin_inclusion_add_value'
LANGUAGE 'c';
CREATE OR REPLACE FUNCTION sbox_brin_inclusion_add_value(internal, internal, internal, internal)
RETURNS boolean
AS 'MODULE_PATHNAME','sbox_brin_inclusion_add_value'
LANGUAGE 'c';
CREATE OPERATOR CLASS brin_spoint_inclusion_ops
DEFAULT FOR TYPE spoint
USING brin
FAMILY brin_inclusion_spheric_ops AS
FUNCTION 1 brin_inclusion_opcinfo(internal) ,
FUNCTION 2 spoint_brin_inclusion_add_value(internal, internal, internal, internal) ,
FUNCTION 3 brin_inclusion_consistent(internal, internal, internal) ,
FUNCTION 4 brin_inclusion_union(internal, internal, internal) ,
STORAGE spherekey;
CREATE OPERATOR CLASS brin_sbox_inclusion_ops
DEFAULT FOR TYPE sbox
USING brin
FAMILY brin_inclusion_spheric_ops AS
FUNCTION 1 brin_inclusion_opcinfo(internal) ,
FUNCTION 2 sbox_brin_inclusion_add_value(internal, internal, internal, internal) ,
FUNCTION 3 brin_inclusion_consistent(internal, internal, internal) ,
FUNCTION 4 brin_inclusion_union(internal, internal, internal) ,
STORAGE spherekey;
ALTER OPERATOR FAMILY brin_inclusion_spheric_ops USING brin ADD
OPERATOR 3 &&(spherekey, spoint),
OPERATOR 7 @>(spherekey, spoint),
OPERATOR 8 <@(spherekey, spoint),
OPERATOR 3 &&(spoint, spherekey),
OPERATOR 7 @>(spoint, spherekey),
OPERATOR 8 <@(spoint, spherekey),
OPERATOR 3 &&(spherekey, sbox),
OPERATOR 7 @>(spherekey, sbox),
OPERATOR 8 <@(spherekey, sbox),
OPERATOR 3 &&(sbox, spherekey),
OPERATOR 7 @>(sbox, spherekey),
OPERATOR 8 <@(sbox, spherekey),
OPERATOR 3 &&(spherekey, spherekey),
OPERATOR 7 @>(spherekey, spherekey),
OPERATOR 8 <@(spherekey, spherekey),
OPERATOR 3 &&(spoint, sbox),
OPERATOR 3 &&(sbox, spoint),
OPERATOR 7 @>(sbox, spoint),
OPERATOR 7 @>(spoint, sbox),
OPERATOR 8 <@(sbox, spoint),
OPERATOR 8 <@(spoint, sbox),
OPERATOR 3 &&(sbox, sbox),
OPERATOR 7 @>(sbox, sbox),
OPERATOR 8 <@(sbox, sbox);
|