@@ -105,9 +105,9 @@ DECLARE
105
105
BEGIN
106
106
major_version := 0 ;
107
107
minor_version := 10 ;
108
- minor_revision := 5 ;
109
- code_name := ' Snowy holidays ' ;
110
- release_date := ' 2024-12 -23' ::date ;
108
+ minor_revision := 6 ;
109
+ code_name := ' Frosty roads... ' ;
110
+ release_date := ' 2025-01 -23' ::date ;
111
111
version := concat(major_version,' .' ,minor_version,' .' ,minor_revision);
112
112
full_version := concat(major_version,' .' ,minor_version,' .' ,minor_revision,' "' ,code_name,' ", released on ' ,release_date);
113
113
@@ -2661,9 +2661,11 @@ REVOKE EXECUTE ON FUNCTION qgis_pkg.compute_schemas_disk_size() FROM public;
2661
2661
-- --------------------------------------------------------------
2662
2662
DROP FUNCTION IF EXISTS qgis_pkg .st_3darea_poly (geometry);
2663
2663
CREATE OR REPLACE FUNCTION qgis_pkg .st_3darea_poly(
2664
- polygon3d geometry -- must be a 3D polygon
2664
+ polygon3d geometry -- must be a 3D polygon
2665
2665
)
2666
- RETURNS numeric AS $$
2666
+ RETURNS numeric
2667
+ SET search_path TO public, pg_catalog, pg_temp
2668
+ AS $$
2667
2669
DECLARE
2668
2670
ring geometry;
2669
2671
n_points integer ;
@@ -2732,9 +2734,9 @@ RETURN area;
2732
2734
2733
2735
EXCEPTION
2734
2736
WHEN QUERY_CANCELED THEN
2735
- RAISE EXCEPTION ' util_pkg .st_3darea_poly(): Error QUERY_CANCELED' ;
2737
+ RAISE EXCEPTION ' qgis_pkg .st_3darea_poly(): Error QUERY_CANCELED' ;
2736
2738
WHEN OTHERS THEN
2737
- RAISE EXCEPTION ' util_pkg .st_3darea_poly(): %' , SQLERRM;
2739
+ RAISE EXCEPTION ' qgis_pkg .st_3darea_poly(): %' , SQLERRM;
2738
2740
END;
2739
2741
$$ LANGUAGE plpgsql IMMUTABLE;
2740
2742
COMMENT ON FUNCTION qgis_pkg.st_3darea_poly(geometry) IS ' Returns the 3D area of a 3D polygon' ;
@@ -2750,7 +2752,7 @@ perform_snapping integer DEFAULT 0, -- i.e. default is 0 ("do nothing"), oth
2750
2752
digits integer DEFAULT 3 , -- number of digits after comma for precision
2751
2753
area_min numeric DEFAULT 0 .0001 -- minimum acceptable area of a polygon
2752
2754
)
2753
- RETURNS geometry
2755
+ RETURNS geometry
2754
2756
SET search_path TO public, pg_catalog, pg_temp
2755
2757
AS $$
2756
2758
DECLARE
0 commit comments