File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
rust/sedona-functions/src Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ macro_rules! define_aggregate_kernels {
3939
4040pub fn scalar_kernels ( ) -> Vec < ( & ' static str , Vec < ScalarKernelRef > ) > {
4141 define_scalar_kernels ! (
42-
4342 "st_area" => crate :: st_area:: st_area_impl,
4443 "st_boundary" => crate :: st_boundary:: st_boundary_impl,
4544 "st_buffer" => crate :: st_buffer:: st_buffer_impl,
Original file line number Diff line number Diff line change 1515// specific language governing permissions and limitations
1616// under the License.
1717
18- use std:: sync:: Arc ;
1918use arrow_array:: builder:: StringBuilder ;
2019use datafusion_common:: error:: Result ;
2120use datafusion_common:: DataFusionError ;
@@ -26,6 +25,7 @@ use sedona_expr::{
2625 scalar_udf:: { ScalarKernelRef , SedonaScalarKernel } ,
2726} ;
2827use sedona_schema:: { datatypes:: SedonaType , matchers:: ArgMatcher } ;
28+ use std:: sync:: Arc ;
2929
3030use crate :: executor:: GeosExecutor ;
3131
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ mod st_point;
5151mod st_pointn;
5252mod st_points;
5353mod st_pointzm;
54+ pub mod st_relate;
5455mod st_reverse;
5556mod st_rotate;
5657mod st_scale;
@@ -61,4 +62,3 @@ mod st_translate;
6162mod st_xyzm;
6263mod st_xyzm_minmax;
6364mod st_zmflag;
64- pub mod st_relate;
You can’t perform that action at this time.
0 commit comments