Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-13 Thread via GitHub
zclllyybb commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2041375509 ## regression-test/suites/nereids_p0/sql_functions/spatial_functions/test_gis_function.groovy: ## @@ -98,8 +107,16 @@ suite("test_gis_function") { qt_sql "SELE

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-13 Thread via GitHub
zclllyybb commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2041373323 ## be/test/geo/geo_types_test.cpp: ## Review Comment: 空的Multipolygon Multipolygon内部的两个polygon A和B上的某个点对相距特别近的Multipolygon 1e-5 1e-8的距离 -- This is an autom

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-11 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2039537097 ## be/src/geo/geo_types.cpp: ## @@ -483,6 +490,15 @@ const std::unique_ptr GeoPolygon::to_coords() const { return coordss; } +const std::vector> GeoMultiPol

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
hello-stephen commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2789562479 # BE UT Coverage Report Increment line coverage `52.10% (174/334)` :tada: [Increment coverage report](http://coverage.selectdb-in.cc/coverage/1600164aaa9d17de2a575ff9fd93c4

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783861732 run vault_p0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
zclllyybb commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2035186604 ## be/test/geo/geo_types_test.cpp: ## @@ -474,6 +501,162 @@ TEST_F(GeoTypesTest, polygon_intersects) { } } +TEST_F(GeoTypesTest, multipolygon_intersects) { +

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2789319250 ClickBench: Total hot run time: 30.82 s ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784859986 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784758871 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784800542 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. T

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784924762 TPC-DS: Total hot run time: 192578 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools TPC-DS

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784908760 TPC-H: Total hot run time: 33929 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools Tpch sf100

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
HappenLee commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2032310849 ## be/src/geo/geo_types.h: ## @@ -185,6 +183,36 @@ class GeoPolygon : public GeoShape { std::unique_ptr _polygon; }; +class GeoMultiPolygon : public GeoShape

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784849412 ClickBench: Total hot run time: 31.09 s ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-10 Thread via GitHub
HappenLee commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2032316704 ## be/src/geo/geo_types.cpp: ## @@ -483,6 +529,35 @@ const std::unique_ptr GeoPolygon::to_coords() const { return coordss; } +const std::vector> GeoMultiPol

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784970846 TPC-H: Total hot run time: 34228 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools Tpch sf100

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
HappenLee commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2035393607 ## be/src/geo/geo_types.cpp: ## @@ -483,6 +490,15 @@ const std::unique_ptr GeoPolygon::to_coords() const { return coordss; } +const std::vector> GeoMultiPol

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2035191984 ## be/test/geo/geo_types_test.cpp: ## @@ -474,6 +501,162 @@ TEST_F(GeoTypesTest, polygon_intersects) { } } +TEST_F(GeoTypesTest, multipolygon_intersects) { +

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2789287479 TPC-DS: Total hot run time: 193404 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools TPC-DS

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2789254782 TPC-H: Total hot run time: 34137 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools Tpch sf100

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2035074989 ## be/src/geo/geo_types.cpp: ## @@ -483,6 +529,35 @@ const std::unique_ptr GeoPolygon::to_coords() const { return coordss; } +const std::vector> GeoMultiPol

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2035074989 ## be/src/geo/geo_types.cpp: ## @@ -483,6 +529,35 @@ const std::unique_ptr GeoPolygon::to_coords() const { return coordss; } +const std::vector> GeoMultiPol

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-09 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2789144937 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-08 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784989211 ClickBench: Total hot run time: 30.88 s ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-08 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2032926864 ## be/src/geo/wkt_parse_type.h: ## @@ -38,6 +38,10 @@ struct GeoCoordinateListList { delete item; } } +GeoCoordinateListList() = defaul

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-08 Thread via GitHub
linrrzqqq commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2032925766 ## be/src/geo/geo_types.h: ## @@ -185,6 +183,36 @@ class GeoPolygon : public GeoShape { std::unique_ptr _polygon; }; +class GeoMultiPolygon : public GeoShape

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
HappenLee commented on code in PR #49665: URL: https://github.com/apache/doris/pull/49665#discussion_r2032311505 ## be/src/geo/wkt_parse_type.h: ## @@ -38,6 +38,10 @@ struct GeoCoordinateListList { delete item; } } +GeoCoordinateListList() = defaul

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784940733 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784983417 TPC-DS: Total hot run time: 186471 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools TPC-DS

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784932054 ClickBench: Total hot run time: 30.96 s ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784876410 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784838334 run p0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscr

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784841616 TPC-DS: Total hot run time: 193985 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools TPC-DS

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784834117 run beut -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubs

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2784826494 TPC-H: Total hot run time: 34062 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools Tpch sf100

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783843942 run arm -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubsc

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783345405 run p0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscr

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783266487 run p0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscr

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783239776 run arm -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubsc

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2783017430 run p0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsu

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2782930661 # BE UT Coverage Report Increment line coverage `0.67% (1/149)` :tada: [Increment coverage report](http://coverage.selectdb-in.cc/coverage/6d6de26f3695a60b4e28a7abf31e9841bef

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2782532473 ClickBench: Total hot run time: 30.92 s ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2782517356 TPC-DS: Total hot run time: 193478 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools TPC-DS

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
doris-robot commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2782484098 TPC-H: Total hot run time: 34125 ms ``` machine: 'aliyun_ecs.c7a.8xlarge_32C64G' scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools Tpch sf100

Re: [PR] [Enhancement] (GEO) Support MultiPolygon for Geometry functions [doris]

2025-04-07 Thread via GitHub
linrrzqqq commented on PR #49665: URL: https://github.com/apache/doris/pull/49665#issuecomment-2782327013 run buildall -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un