File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
snowflake/src/main/java/org/apache/sedona/snowflake/snowsql Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,15 @@ public static String ST_LabelPoint(String geom) {
110
110
111
111
@ UDFAnnotations .ParamMeta (
112
112
argNames = {"geom" , "gridResolution" },
113
- argTypes = {"Geometry" , "double " })
113
+ argTypes = {"Geometry" , "int " })
114
114
public static String ST_LabelPoint (String geom , int gridResolution ) {
115
115
return GeometrySerde .serGeoJson (
116
116
Functions .labelPoint (GeometrySerde .deserGeoJson (geom ), gridResolution ));
117
117
}
118
118
119
119
@ UDFAnnotations .ParamMeta (
120
120
argNames = {"geom" , "gridResolution" , "goodnessThreshold" },
121
- argTypes = {"Geometry" , "double " , "double" })
121
+ argTypes = {"Geometry" , "int " , "double" })
122
122
public static String ST_LabelPoint (String geom , int gridResolution , double goodnessThreshold ) {
123
123
return GeometrySerde .serGeoJson (
124
124
Functions .labelPoint (GeometrySerde .deserGeoJson (geom ), gridResolution , goodnessThreshold ));
You can’t perform that action at this time.
0 commit comments