Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. old version:
  2. CREATE AGGREGATE ST_Extent (
  3. sfunc = ST_CombineBBox,
  4. combinefunc = ST_CombineBBox,
  5. basetype = geometry,
  6. finalfunc = box2d,
  7. stype = box3d
  8. );
  9.  
  10. new:
  11. CREATE AGGREGATE ST_Extent(geometry) (
  12. sfunc = ST_CombineBBox,
  13. combinefunc = ST_CombineBBox,
  14. finalfunc = box2d,
  15. stype = box3d,
  16. parallel = safe
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement