X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fbdf205ab40f97792ef59572b138eb3c87d186da..8a8e23ef3cb3e7ffb937c75ab1bdeee9ef5b3bf0:/sql/functions/utils.sql diff --git a/sql/functions/utils.sql b/sql/functions/utils.sql index a8c4638c..6697ff97 100644 --- a/sql/functions/utils.sql +++ b/sql/functions/utils.sql @@ -429,7 +429,7 @@ DECLARE geo RECORD; BEGIN -- 10000000000 is ~~ 1x1 degree - FOR geo IN select quad_split_geometry(geometry, 0.25, 20) as geom LOOP + FOR geo IN select quad_split_geometry(geometry, 0.01, 20) as geom LOOP RETURN NEXT geo.geom; END LOOP; RETURN;