Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-31 Thread via GitHub


github-actions[bot] commented on code in PR #64241:
URL: https://github.com/apache/doris/pull/64241#discussion_r3688674258


##
be/src/util/debug/leak_annotations.h:
##
@@ -77,12 +75,22 @@ void __lsan_do_leak_check();
 int __lsan_do_recoverable_leak_check();
 } // extern "C"
 
+#endif // DORIS_LSAN_ENABLED && __linux__

Review Comment:
   **[P2] Preserve LSan suppression on supported macOS builds**
   
   Moving this `#endif` here makes all copied LSan declarations Linux-only, and 
the new matching `__linux__` guards below also make `ScopedLSANDisabler` a 
no-op on Darwin. But `DORIS_LSAN_ENABLED` is true for Clang ASAN/LSAN there, 
LLVM 16 implements `__lsan_disable`/`__lsan_enable` on Darwin, and 
`BUILD_TYPE_UT=LSAN` is selectable. `load_stream_test.cpp` wraps 
`brpc::Server::Start` in `ScopedLeakCheckDisabler` so those allocations are not 
reported; standalone macOS LSan (or ASAN with `detect_leaks=1`) will now report 
them. Keep the declarations and RAII calls enabled on Darwin too, or gate them 
on actual LSan runtime support; only platform-specific annotation behavior 
needs a narrower guard.



-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-31 Thread via GitHub


github-actions[bot] commented on code in PR #64241:
URL: https://github.com/apache/doris/pull/64241#discussion_r3688674258


##
be/src/util/debug/leak_annotations.h:
##
@@ -77,12 +75,22 @@ void __lsan_do_leak_check();
 int __lsan_do_recoverable_leak_check();
 } // extern "C"
 
+#endif // DORIS_LSAN_ENABLED && __linux__

Review Comment:
   **[P2] Preserve LSan suppression on supported macOS builds**
   
   `DORIS_LSAN_ENABLED` is true for Clang ASAN/LSAN on Darwin, and LLVM 16 
implements `__lsan_disable`/`__lsan_enable` on Darwin. `BUILD_TYPE_UT=LSAN` is 
selectable, and `load_stream_test.cpp` wraps `brpc::Server::Start` in 
`ScopedLeakCheckDisabler` so those allocations are not reported. With this 
`__linux__` guard the scope becomes a silent no-op on macOS, so standalone LSan 
(or ASAN with `detect_leaks=1`) will report the intentionally excluded 
allocations. Keep the declarations and RAII calls enabled on Darwin too, or 
gate them on actual LSan runtime support; only platform-specific annotation 
behavior needs a narrower guard.



-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-30 Thread via GitHub


yx-keith commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-5140025431

   /review


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-30 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-5138863929

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-30 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-5138861992

   run cloud_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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-14 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4972695507

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_429e088eb3904fe41d04a7d94f86d329313c39d5_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_429e088eb3904fe41d04a7d94f86d329313c39d5_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 65.62% (26562/40478) |
   | Line Coverage | 49.47% (279799/565631) |
   | Region Coverage   | 46.13% (231693/502299) |
   | Branch Coverage   | 47.38% (102949/217295) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-14 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4967670900

   # BE UT Coverage Report
   Increment line coverage `100.00% (10/10)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/429e088eb3904fe41d04a7d94f86d329313c39d5_429e088eb3904fe41d04a7d94f86d329313c39d5/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/429e088eb3904fe41d04a7d94f86d329313c39d5_429e088eb3904fe41d04a7d94f86d329313c39d5/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 57.09% (23689/41497) |
   | Line Coverage | 40.80% (232265/569233) |
   | Region Coverage   | 36.68% (183547/500413) |
   | Branch Coverage   | 37.79% (82081/217212) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-14 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4967342719

   
   
   ClickBench: Total hot run time: 24.99 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit 429e088eb3904fe41d04a7d94f86d329313c39d5, 
data reload: false
   
   query1   0.010.010.00
   query2   0.100.050.05
   query3   0.260.140.14
   query4   1.620.140.15
   query5   0.280.220.23
   query6   1.231.061.06
   query7   0.040.010.01
   query8   0.060.030.04
   query9   0.390.320.32
   query10  0.560.580.57
   query11  0.180.140.15
   query12  0.190.150.15
   query13  0.480.480.47
   query14  1.011.021.03
   query15  0.620.590.60
   query16  0.320.330.32
   query17  1.121.081.10
   query18  0.230.220.21
   query19  2.082.001.92
   query20  0.010.010.02
   query21  15.42   0.240.14
   query22  4.820.050.05
   query23  16.16   0.300.12
   query24  2.990.410.31
   query25  0.110.050.04
   query26  0.740.220.15
   query27  0.030.030.04
   query28  3.560.950.52
   query29  12.52   4.073.17
   query30  0.270.150.16
   query31  2.770.610.32
   query32  3.210.600.49
   query33  3.143.203.22
   query34  15.58   4.183.56
   query35  3.493.543.53
   query36  0.570.420.43
   query37  0.090.070.06
   query38  0.050.040.04
   query39  0.040.040.03
   query40  0.180.170.14
   query41  0.090.030.02
   query42  0.040.020.02
   query43  0.040.030.04
   Total cold run time: 96.7 s
   Total hot run time: 24.99 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-14 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4967300730

   
   
   TPC-DS: Total hot run time: 176859 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 429e088eb3904fe41d04a7d94f86d329313c39d5, 
data reload: false
   
   query5   4347625 483 483
   query6   446 214 214 214
   query7   4853577 311 311
   query8   335 193 173 173
   query9   8737399639973996
   query10  484 361 296 296
   query11  5925232821062106
   query12  157 106 103 103
   query13  1247623 462 462
   query14  6275521948794879
   query14_14263424342684243
   query15  212 200 186 186
   query16  1005463 462 462
   query17  1137700 579 579
   query18  2495491 354 354
   query19  207 201 161 161
   query20  110 107 106 106
   query21  231 163 133 133
   query22  13567   13548   13301   13301
   query23  17200   16436   16008   16008
   query23_116211   16164   16119   16119
   query24  7632174912751275
   query24_11302129812721272
   query25  556 452 354 354
   query26  1362368 209 209
   query27  2558547 369 369
   query28  4751206520662065
   query29  1060632 474 474
   query30  353 270 260 260
   query31  1103974 974
   query32  113 63  63  63
   query33  504 320 247 247
   query34  11791138650 650
   query35  773 760 659 659
   query36  1192119210511051
   query37  148 96  85  85
   query38  1885169116441644
   query39  873 861 847 847
   query39_1816 833 833 833
   query40  239 161 139 139
   query41  65  63  63  63
   query42  87  90  92  90
   query43  332 324 284 284
   query44  1433770 752 752
   query45  197 180 175 175
   query46  10781176720 720
   query47  2093213020042004
   query48  401 416 295 295
   query49  587 408 306 306
   query50  1007426 320 320
   query51  10872   10630   10862   10630
   query52  83  84  74  74
   query53  260 278 202 202
   query54  290 233 225 225
   query55  73  73  66  66
   query56  300 281 289 281
   query57  1305128712011201
   query58  286 259 244 244
   query59  1592164914801480
   query60  300 268 256 256
   query61  155 157 165 157
   query62  560 500 437 437
   query63  241 199 208 199
   query64  29241120826 826
   query65  4773462946444629
   query66  1830499 366 366
   query67  29192   29199   29127   29127
   query68  3164155510281028
   query69  398 297 283 283
   query70  1072991 987 987
   query71  352 315 297 297
   query72  3042272721082108
   query73  880 817 466 466
   query74  5089495947334733
   query75  2512249621422142
   query76  23321181765 765
   query77  338 383 287 287
   query78  11868   11841   11282   11282
   query79  14641154708 708
   query80  1232520 460 460
   query81  514 320 272 272
   query82  565 152 119 119
   query83  397 315 289 289
   query84  279 154 131 131
   query85  989 591 560 560
   query86  414 301 286 286
   query87  1820181517981798
   query88  3668277527662766
   query89  426 367 330 330
   query90  1788197 195 195
   query91  200 184 163 163
   query92  62  60  59  59
   query93  15501434947 947
   query94  662 350 311 311
   query95  780 570 475 475
   query96  1013803 336 336
   query97  2630259424992499
   query98  212 212 205 205
   query99  10871116978 978
   Total cold run time: 263377 ms
   Total hot run time: 176859 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-14 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4967202658

   
   
   TPC-H: Total hot run time: 29338 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 429e088eb3904fe41d04a7d94f86d329313c39d5, 
data reload: false
   
   -- Round 1 --
   
   q1   18125   410040394039
   q2   2038318 198 198
   q3   10301   1472832 832
   q4   4682469 338 338
   q5   7510845 568 568
   q6   181 173 138 138
   q7   732 810 614 614
   q8   9796165415651565
   q9   5853431243354312
   q10  6812172714721472
   q11  506 342 319 319
   q12  764 554 440 440
   q13  18065   324826962696
   q14  274 259 246 246
   q15  q16 781 768 703 703
   q17  950 989 1026989
   q18  6998566255385538
   q19  1250128610511051
   q20  781 645 534 534
   q21  5718250924422442
   q22  423 355 304 304
   Total cold run time: 102540 ms
   Total hot run time: 29338 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4403428843434288
   q2   290 330 230 230
   q3   4593489843454345
   q4   2063215413821382
   q5   4374434443134313
   q6   228 175 130 130
   q7   1738195417151715
   q8   2500224522032203
   q9   7722775477107710
   q10  4692466641644164
   q11  561 440 391 391
   q12  752 763 564 564
   q13  3429361029752975
   q14  305 324 277 277
   q15  q16 731 718 644 644
   q17  1392137813101310
   q18  8091730672077207
   q19  1085106110621061
   q20  2209219819381938
   q21  5244464945304530
   q22  545 450 402 402
   Total cold run time: 56947 ms
   Total hot run time: 51779 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-13 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4966204520

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-11 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4949091895

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_9698cf2ae69fef899f393da0929f9f005abb5d51_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_9698cf2ae69fef899f393da0929f9f005abb5d51_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 65.36% (26196/40080) |
   | Line Coverage | 49.23% (275036/558721) |
   | Region Coverage   | 46.08% (228545/495943) |
   | Branch Coverage   | 47.19% (100730/213438) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-11 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4945983509

   run cloud_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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-10 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4934302399

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_9698cf2ae69fef899f393da0929f9f005abb5d51_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_9698cf2ae69fef899f393da0929f9f005abb5d51_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 65.36% (26196/40080) |
   | Line Coverage | 49.23% (275036/558721) |
   | Region Coverage   | 46.08% (228545/495943) |
   | Branch Coverage   | 47.19% (100730/213438) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-09 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4930650845

   
   
   ClickBench: Total hot run time: 24.89 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit 9698cf2ae69fef899f393da0929f9f005abb5d51, 
data reload: false
   
   query1   0.010.010.00
   query2   0.090.050.04
   query3   0.260.170.13
   query4   1.610.140.14
   query5   0.240.220.23
   query6   1.231.081.06
   query7   0.040.000.00
   query8   0.050.030.03
   query9   0.360.310.31
   query10  0.560.550.53
   query11  0.200.140.14
   query12  0.180.140.14
   query13  0.460.470.48
   query14  1.001.011.01
   query15  0.610.600.59
   query16  0.340.330.31
   query17  1.121.111.13
   query18  0.240.210.21
   query19  2.111.891.98
   query20  0.020.020.01
   query21  15.44   0.200.13
   query22  5.040.050.06
   query23  16.10   0.310.12
   query24  2.940.420.30
   query25  0.110.050.04
   query26  0.740.200.16
   query27  0.050.030.04
   query28  3.480.930.55
   query29  12.49   4.093.24
   query30  0.270.160.16
   query31  2.780.580.31
   query32  3.210.590.48
   query33  3.253.273.20
   query34  15.54   4.263.49
   query35  3.503.523.51
   query36  0.560.430.42
   query37  0.090.060.07
   query38  0.050.040.04
   query39  0.040.030.03
   query40  0.170.160.15
   query41  0.090.030.02
   query42  0.040.030.03
   query43  0.050.040.03
   Total cold run time: 96.76 s
   Total hot run time: 24.89 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-09 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4930623294

   
   
   TPC-DS: Total hot run time: 180007 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 9698cf2ae69fef899f393da0929f9f005abb5d51, 
data reload: false
   
   query5   4330625 487 487
   query6   457 222 189 189
   query7   4846593 350 350
   query8   337 183 176 176
   query9   8814398039853980
   query10  470 330 289 289
   query11  5890234921242124
   query12  159 100 98  98
   query13  1270580 448 448
   query14  6274529849354935
   query14_14272424042574240
   query15  212 203 181 181
   query16  989 453 430 430
   query17  929 706 568 568
   query18  2422464 347 347
   query19  201 181 149 149
   query20  110 107 113 107
   query21  240 161 127 127
   query22  13609   13537   13365   13365
   query23  17254   16537   16161   16161
   query23_116277   16240   16232   16232
   query24  7523173112721272
   query24_11296129513121295
   query25  521 433 387 387
   query26  1348356 210 210
   query27  2597587 370 370
   query28  4496201720222017
   query29  1070630 494 494
   query30  340 260 224 224
   query31  11141093978 978
   query32  99  63  60  60
   query33  518 330 276 276
   query34  11661171685 685
   query35  763 794 664 664
   query36  1391141213051305
   query37  153 114 102 102
   query38  1880172716581658
   query39  919 916 897 897
   query39_1881 881 883 881
   query40  246 164 146 146
   query41  71  69  71  69
   query42  95  98  94  94
   query43  315 321 275 275
   query44  1398795 789 789
   query45  203 191 180 180
   query46  10351193764 764
   query47  2410239222542254
   query48  404 421 311 311
   query49  585 450 311 311
   query50  1126432 331 331
   query51  10744   10778   10747   10747
   query52  86  88  77  77
   query53  272 283 214 214
   query54  295 251 236 236
   query55  84  86  67  67
   query56  295 285 299 285
   query57  1426142513111311
   query58  297 248 263 248
   query59  1571160613701370
   query60  319 283 275 275
   query61  177 177 175 175
   query62  701 640 595 595
   query63  248 206 205 205
   query64  28971056850 850
   query65  4880481447824782
   query66  1819515 376 376
   query67  29656   29349   29335   29335
   query68  31791534978 978
   query69  398 290 271 271
   query70  1057949 940 940
   query71  338 309 297 297
   query72  3052267723952395
   query73  813 765 433 433
   query74  5102495847774777
   query75  2589256421952195
   query76  23111170767 767
   query77  355 381 263 263
   query78  12276   12382   11749   11749
   query79  13831116751 751
   query80  1274547 466 466
   query81  524 331 277 277
   query82  623 160 126 126
   query83  371 319 289 289
   query84  321 157 130 130
   query85  959 587 511 511
   query86  419 298 266 266
   query87  1816181417531753
   query88  3744279427742774
   query89  458 414 354 354
   query90  1913201 189 189
   query91  196 182 152 152
   query92  64  60  52  52
   query93  1654147410381038
   query94  711 365 307 307
   query95  767 564 465 465
   query96  1020761 355 355
   query97  2726267225732573
   query98  208 203 202 202
   query99  1143118410351035
   Total cold run time: 265488 ms
   Total hot run time: 180007 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-09 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4930567840

   
   
   TPC-H: Total hot run time: 29216 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 9698cf2ae69fef899f393da0929f9f005abb5d51, 
data reload: false
   
   -- Round 1 --
   
   q1   17628   401239883988
   q2   2008313 195 195
   q3   10294   1396813 813
   q4   4677465 334 334
   q5   7489825 565 565
   q6   171 163 135 135
   q7   745 823 610 610
   q8   9851151115621511
   q9   5919436143034303
   q10  6804177615101510
   q11  498 333 309 309
   q12  729 539 427 427
   q13  18077   328127242724
   q14  262 260 250 250
   q15  q16 784 771 706 706
   q17  963 970 1024970
   q18  6790582455205520
   q19  1298123110661066
   q20  742 657 542 542
   q21  5807258224492449
   q22  419 349 289 289
   Total cold run time: 101955 ms
   Total hot run time: 29216 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4297422542404225
   q2   282 305 205 205
   q3   4569490444004400
   q4   2013211713191319
   q5   4374429642694269
   q6   222 174 126 126
   q7   1691163217631632
   q8   2547217520922092
   q9   7768772977257725
   q10  4730468041984198
   q11  551 414 399 399
   q12  769 757 529 529
   q13  3291363529362936
   q14  286 309 291 291
   q15  q16 720 743 627 627
   q17  1335136012911291
   q18  7891718972617189
   q19  1093103710861037
   q20  2194219719141914
   q21  5141449743834383
   q22  539 469 427 427
   Total cold run time: 56303 ms
   Total hot run time: 51214 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-07-09 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4930394278

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-23 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4784910161

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_8496b3ce20fa2179c8315909f69763a5ee2c14b0_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_8496b3ce20fa2179c8315909f69763a5ee2c14b0_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 58.52% (22423/38319) |
   | Line Coverage | 41.71% (222586/533607) |
   | Region Coverage   | 37.81% (178808/472863) |
   | Branch Coverage   | 38.62% (77419/200465) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4775803956

   
   
   ClickBench: Total hot run time: 25.18 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit 8496b3ce20fa2179c8315909f69763a5ee2c14b0, 
data reload: false
   
   query1   0.010.010.00
   query2   0.090.050.05
   query3   0.250.140.13
   query4   1.610.130.14
   query5   0.220.230.22
   query6   1.221.081.06
   query7   0.050.010.01
   query8   0.050.040.04
   query9   0.370.330.32
   query10  0.540.530.55
   query11  0.200.140.14
   query12  0.180.140.14
   query13  0.460.470.48
   query14  1.021.001.01
   query15  0.610.610.59
   query16  0.300.320.32
   query17  1.081.061.05
   query18  0.230.210.21
   query19  1.982.011.98
   query20  0.010.010.01
   query21  15.42   0.210.14
   query22  4.860.050.06
   query23  16.12   0.320.13
   query24  2.940.380.32
   query25  0.110.050.03
   query26  0.730.220.14
   query27  0.050.040.04
   query28  3.560.900.54
   query29  12.47   4.393.44
   query30  0.270.160.15
   query31  2.790.600.30
   query32  3.220.610.49
   query33  3.233.243.17
   query34  15.68   4.213.57
   query35  3.533.513.53
   query36  0.550.420.41
   query37  0.080.060.07
   query38  0.050.040.03
   query39  0.030.040.03
   query40  0.180.160.15
   query41  0.090.030.03
   query42  0.040.020.02
   query43  0.050.040.03
   Total cold run time: 96.53 s
   Total hot run time: 25.18 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4775776153

   
   
   TPC-DS: Total hot run time: 172676 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 8496b3ce20fa2179c8315909f69763a5ee2c14b0, 
data reload: false
   
   query5   4300625 480 480
   query6   438 185 170 170
   query7   4912543 294 294
   query8   369 216 200 200
   query9   8742409040954090
   query10  469 301 249 249
   query11  5901232021862186
   query12  158 108 103 103
   query13  1256620 446 446
   query14  6356536550565056
   query14_14382439343944393
   query15  207 197 178 178
   query16  1026496 450 450
   query17  1143717 616 616
   query18  2761479 336 336
   query19  195 174 138 138
   query20  108 104 105 104
   query21  212 131 115 115
   query22  13626   13656   13353   13353
   query23  17328   16432   16229   16229
   query23_116203   16273   16188   16188
   query24  7487175013211321
   query24_11311130913101309
   query25  557 427 368 368
   query26  1073323 167 167
   query27  2657539 330 330
   query28  4447205820472047
   query29  1044611 469 469
   query30  299 235 193 193
   query31  11181066958 958
   query32  104 61  57  57
   query33  513 321 239 239
   query34  11841152652 652
   query35  740 779 675 675
   query36  1359140212411241
   query37  157 109 94  94
   query38  1885172516631663
   query39  936 919 924 919
   query39_1882 884 895 884
   query40  213 119 97  97
   query41  64  63  61  61
   query42  86  85  87  85
   query43  320 324 275 275
   query44  1454775 793 775
   query45  207 183 176 176
   query46  10901249774 774
   query47  2402237322552255
   query48  427 412 295 295
   query49  621 459 354 354
   query50  1026362 261 261
   query51  4309423942674239
   query52  79  83  69  69
   query53  255 259 189 189
   query54  256 212 197 197
   query55  73  71  68  68
   query56  249 223 222 222
   query57  1436144013171317
   query58  236 218 203 203
   query59  1580162614301430
   query60  287 248 221 221
   query61  151 156 148 148
   query62  713 647 576 576
   query63  225 187 198 187
   query64  2191793 593 593
   query65  4896482147904790
   query66  1706445 336 336
   query67  28992   29752   29547   29547
   query68  3141160610351035
   query69  441 302 270 270
   query70  1071930 991 930
   query71  294 232 206 206
   query72  2945260225922592
   query73  876 773 416 416
   query74  5147494347744774
   query75  2652261722332233
   query76  23481175781 781
   query77  348 355 287 287
   query78  12373   12550   11859   11859
   query79  13961229729 729
   query80  583 464 382 382
   query81  448 283 242 242
   query82  567 155 117 117
   query83  335 273 253 253
   query84  294 144 107 107
   query85  846 513 409 409
   query86  367 293 283 283
   query87  1824182917551755
   query88  3725278427732773
   query89  440 375 328 328
   query90  1828186 181 181
   query91  169 158 134 134
   query92  59  65  55  55
   query93  15741387881 881
   query94  536 338 311 311
   query95  714 453 344 344
   query96  1091856 344 344
   query97  2760269125502550
   query98  214 205 200 200
   query99  1185115310201020
   Total cold run time: 256513 ms
   Total hot run time: 172676 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4775712195

   
   
   TPC-H: Total hot run time: 28952 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 8496b3ce20fa2179c8315909f69763a5ee2c14b0, 
data reload: false
   
   -- Round 1 --
   
   q1   17648   400339113911
   q2   1995316 190 190
   q3   10368   1423846 846
   q4   4706474 340 340
   q5   7650860 580 580
   q6   202 166 135 135
   q7   762 824 612 612
   q8   10116   160314831483
   q9   6224454344784478
   q10  6753177715431543
   q11  435 274 239 239
   q12  631 426 291 291
   q13  18085   368127682768
   q14  263 265 240 240
   q15  q16 783 781 705 705
   q17  993 988 1069988
   q18  7417573456065606
   q19  1180135710611061
   q20  478 381 260 260
   q21  5504258323842384
   q22  434 350 292 292
   Total cold run time: 102627 ms
   Total hot run time: 28952 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4289424742214221
   q2   336 357 230 230
   q3   4554497244654465
   q4   2051215513521352
   q5   4392429842724272
   q6   223 180 130 130
   q7   1708197217491749
   q8   2465217721062106
   q9   8007795179277927
   q10  5114478743394339
   q11  563 424 385 385
   q12  950 771 532 532
   q13  3289358930043004
   q14  291 299 285 285
   q15  q16 742 706 655 655
   q17  1342129913131299
   q18  8271725170637063
   q19  1099109810801080
   q20  2206221519371937
   q21  5196458644754475
   q22  524 483 422 422
   Total cold run time: 57612 ms
   Total hot run time: 51928 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4775153034

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4773460134

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_d0302dca5ed9a64c83ec9523942dca5360c12c11_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_d0302dca5ed9a64c83ec9523942dca5360c12c11_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 64.14% (24583/38327) |
   | Line Coverage | 47.88% (255516/533636) |
   | Region Coverage   | 44.62% (211006/472861) |
   | Branch Coverage   | 45.73% (91678/200457) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4768205785

   # BE UT Coverage Report
   Increment line coverage ` ` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/d0302dca5ed9a64c83ec9523942dca5360c12c11_d0302dca5ed9a64c83ec9523942dca5360c12c11/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/d0302dca5ed9a64c83ec9523942dca5360c12c11_d0302dca5ed9a64c83ec9523942dca5360c12c11/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 54.41% (21359/39253) |
   | Line Coverage | 38.03% (204145/536788) |
   | Region Coverage   | 34.05% (160283/470726) |
   | Branch Coverage   | 35.06% (70184/200206) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


yx-keith commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4768151122

   /review
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4768007445

   
   
   ClickBench: Total hot run time: 25.38 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit d0302dca5ed9a64c83ec9523942dca5360c12c11, 
data reload: false
   
   query1   0.010.010.01
   query2   0.090.060.05
   query3   0.250.130.13
   query4   1.610.130.14
   query5   0.240.220.23
   query6   1.271.061.08
   query7   0.040.010.00
   query8   0.050.030.04
   query9   0.380.300.31
   query10  0.560.550.54
   query11  0.190.140.14
   query12  0.200.140.14
   query13  0.470.470.48
   query14  1.001.011.01
   query15  0.610.620.61
   query16  0.330.320.33
   query17  1.061.141.09
   query18  0.230.200.20
   query19  1.981.952.05
   query20  0.020.010.01
   query21  15.43   0.240.14
   query22  4.790.060.05
   query23  16.15   0.300.12
   query24  2.920.420.33
   query25  0.100.050.05
   query26  0.770.210.16
   query27  0.030.040.04
   query28  3.470.960.55
   query29  12.56   4.373.54
   query30  0.270.150.16
   query31  2.780.590.32
   query32  3.220.600.48
   query33  3.263.243.22
   query34  15.78   4.193.52
   query35  3.563.533.50
   query36  0.540.420.43
   query37  0.090.060.06
   query38  0.050.040.04
   query39  0.040.030.03
   query40  0.180.160.15
   query41  0.080.030.03
   query42  0.040.030.03
   query43  0.040.040.04
   Total cold run time: 96.74 s
   Total hot run time: 25.38 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4767966446

   
   
   TPC-DS: Total hot run time: 172795 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit d0302dca5ed9a64c83ec9523942dca5360c12c11, 
data reload: false
   
   query5   4325627 464 464
   query6   430 193 172 172
   query7   4848545 307 307
   query8   356 204 199 199
   query9   8734404640194019
   query10  450 295 256 256
   query11  5946232721072107
   query12  157 101 102 101
   query13  1287614 454 454
   query14  6382542150425042
   query14_14443441243924392
   query15  207 198 182 182
   query16  1007462 451 451
   query17  945 705 589 589
   query18  2487493 347 347
   query19  206 185 149 149
   query20  109 113 110 110
   query21  217 139 118 118
   query22  13581   13641   13378   13378
   query23  17479   16519   16216   16216
   query23_116260   16247   16339   16247
   query24  7626177513381338
   query24_11319131113241311
   query25  560 465 404 404
   query26  1295317 175 175
   query27  2702537 341 341
   query28  4489207420612061
   query29  1100644 490 490
   query30  310 234 202 202
   query31  11201087954 954
   query32  106 65  63  63
   query33  514 325 251 251
   query34  12111153661 661
   query35  739 802 678 678
   query36  1332136612211221
   query37  152 101 91  91
   query38  1893172616431643
   query39  934 937 893 893
   query39_1860 895 870 870
   query40  229 123 99  99
   query41  65  62  61  61
   query42  85  86  86  86
   query43  318 317 278 278
   query44  1459781 787 781
   query45  199 179 178 178
   query46  11151292752 752
   query47  2356236422272227
   query48  414 396 305 305
   query49  619 463 344 344
   query50  1000361 255 255
   query51  4378430742634263
   query52  81  86  71  71
   query53  244 259 192 192
   query54  254 213 198 198
   query55  74  70  67  67
   query56  234 231 207 207
   query57  1417141013291329
   query58  234 204 204 204
   query59  1581166413671367
   query60  286 261 226 226
   query61  147 143 147 143
   query62  695 650 586 586
   query63  234 195 194 194
   query64  2524794 600 600
   query65  4891480347884788
   query66  1810447 331 331
   query67  29861   29751   29603   29603
   query68  32361579957 957
   query69  407 296 257 257
   query70  1057960 945 945
   query71  287 231 221 221
   query72  2960257922802280
   query73  820 780 440 440
   query74  5132496647694769
   query75  2637259922502250
   query76  23371194791 791
   query77  356 382 274 274
   query78  12404   12517   11834   11834
   query79  13851206769 769
   query80  590 465 389 389
   query81  454 277 235 235
   query82  584 162 123 123
   query83  361 280 246 246
   query84  311 142 113 113
   query85  847 530 421 421
   query86  371 305 286 286
   query87  1836183117601760
   query88  3765281228182812
   query89  427 392 337 337
   query90  1955193 184 184
   query91  172 163 133 133
   query92  66  62  56  56
   query93  14531578929 929
   query94  552 353 313 313
   query95  695 393 350 350
   query96  1076800 348 348
   query97  2675267325672567
   query98  216 206 216 206
   query99  1190114610381038
   Total cold run time: 257857 ms
   Total hot run time: 172795 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4767887572

   
   
   TPC-H: Total hot run time: 29028 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit d0302dca5ed9a64c83ec9523942dca5360c12c11, 
data reload: false
   
   -- Round 1 --
   
   q1   17710   401340114011
   q2   2003318 188 188
   q3   10317   1447815 815
   q4   4685469 336 336
   q5   7562867 568 568
   q6   175 168 139 139
   q7   840 849 634 634
   q8   9332157317501573
   q9   5674450344824482
   q10  6763179715171517
   q11  440 271 242 242
   q12  630 435 289 289
   q13  18161   340527782778
   q14  273 269 249 249
   q15  q16 781 774 711 711
   q17  10071001947 947
   q18  6742575754905490
   q19  1170120110841084
   q20  485 398 265 265
   q21  5605269124102410
   q22  437 360 300 300
   Total cold run time: 100792 ms
   Total hot run time: 29028 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4367423442684234
   q2   331 377 228 228
   q3   4565494243754375
   q4   2076218513881388
   q5   4409429643264296
   q6   237 175 130 130
   q7   1682163416241624
   q8   2726218721822182
   q9   8211825379877987
   q10  4804475442414241
   q11  590 446 378 378
   q12  771 779 551 551
   q13  3273361830243024
   q14  299 296 276 276
   q15  q16 732 733 660 660
   q17  1344132413191319
   q18  8021750871877187
   q19  1189115711441144
   q20  2214224419311931
   q21  5263463744774477
   q22  513 445 390 390
   Total cold run time: 57617 ms
   Total hot run time: 52022 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-22 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4767527411

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-17 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4738158484

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_6d0556f95e554965020bb6161014318bade90d59_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_6d0556f95e554965020bb6161014318bade90d59_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 64.14% (24543/38267) |
   | Line Coverage | 47.94% (255324/532621) |
   | Region Coverage   | 44.58% (210408/471983) |
   | Branch Coverage   | 45.77% (91494/199893) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-17 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4733978162

   
   
   ClickBench: Total hot run time: 25.36 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit 6d0556f95e554965020bb6161014318bade90d59, 
data reload: false
   
   query1   0.000.000.01
   query2   0.090.060.05
   query3   0.260.130.13
   query4   1.610.150.14
   query5   0.240.220.24
   query6   1.251.091.08
   query7   0.040.010.01
   query8   0.090.030.04
   query9   0.380.310.31
   query10  0.550.560.54
   query11  0.210.150.13
   query12  0.180.140.15
   query13  0.480.470.49
   query14  1.011.031.01
   query15  0.620.600.60
   query16  0.320.320.31
   query17  1.101.091.14
   query18  0.230.210.21
   query19  2.051.991.97
   query20  0.010.020.01
   query21  15.43   0.210.13
   query22  4.930.050.05
   query23  16.14   0.310.12
   query24  2.940.390.35
   query25  0.110.050.04
   query26  0.720.210.15
   query27  0.050.030.04
   query28  3.580.900.52
   query29  12.51   4.333.50
   query30  0.270.160.15
   query31  2.770.600.32
   query32  3.230.620.49
   query33  3.243.193.20
   query34  15.55   4.233.53
   query35  3.543.553.57
   query36  0.550.440.41
   query37  0.090.070.07
   query38  0.050.030.04
   query39  0.040.030.03
   query40  0.190.160.16
   query41  0.080.030.03
   query42  0.030.030.03
   query43  0.040.030.03
   Total cold run time: 96.8 s
   Total hot run time: 25.36 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-17 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4733939137

   
   
   TPC-DS: Total hot run time: 175571 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 6d0556f95e554965020bb6161014318bade90d59, 
data reload: false
   
   query5   4317618 480 480
   query6   438 192 174 174
   query7   4829500 313 313
   query8   355 213 205 205
   query9   8764405740384038
   query10  445 321 254 254
   query11  5911234821582158
   query12  158 100 100 100
   query13  1252645 432 432
   query14  6393540150735073
   query14_14355439443834383
   query15  209 197 178 178
   query16  1018476 429 429
   query17  965 717 582 582
   query18  2443500 356 356
   query19  207 193 146 146
   query20  117 120 110 110
   query21  214 145 121 121
   query22  13680   13718   13422   13422
   query23  17444   16592   16162   16162
   query23_116321   16313   16346   16313
   query24  7505176013071307
   query24_11331131213311312
   query25  573 469 397 397
   query26  1287312 168 168
   query27  2734548 345 345
   query28  4482205020562050
   query29  1105636 495 495
   query30  318 242 197 197
   query31  11321090973 973
   query32  119 68  61  61
   query33  591 318 267 267
   query34  11771176637 637
   query35  758 818 684 684
   query36  1462143212491249
   query37  162 103 91  91
   query38  3252321331513151
   query39  978 971 946 946
   query39_1938 906 895 895
   query40  221 119 100 100
   query41  64  62  62  62
   query42  95  94  95  94
   query43  319 326 279 279
   query44  1465800 788 788
   query45  194 191 177 177
   query46  10651224768 768
   query47  2371236722142214
   query48  355 430 291 291
   query49  632 475 345 345
   query50  946 368 262 262
   query51  4383434542824282
   query52  87  91  76  76
   query53  256 273 190 190
   query54  259 230 210 210
   query55  79  74  72  72
   query56  251 230 209 209
   query57  1449144213191319
   query58  237 216 206 206
   query59  1584164714401440
   query60  287 252 242 242
   query61  159 145 147 145
   query62  690 655 594 594
   query63  239 183 196 183
   query64  2506751 593 593
   query65  4906477548124775
   query66  1821471 338 338
   query67  29693   29734   29548   29548
   query68  32601576941 941
   query69  408 296 267 267
   query70  1091974 954 954
   query71  292 238 211 211
   query72  2817265023182318
   query73  862 773 462 462
   query74  5127497247744774
   query75  2625259622142214
   query76  23291179807 807
   query77  356 390 269 269
   query78  12431   12564   11834   11834
   query79  14591222771 771
   query80  1287470 389 389
   query81  523 290 241 241
   query82  603 158 122 122
   query83  325 271 250 250
   query84  310 148 114 114
   query85  885 517 408 408
   query86  431 288 285 285
   query87  3434343932023202
   query88  3723278627712771
   query89  430 376 334 334
   query90  1901185 174 174
   query91  169 167 139 139
   query92  62  60  56  56
   query93  16821441873 873
   query94  731 355 271 271
   query95  701 384 439 384
   query96  1044839 339 339
   query97  2682269725502550
   query98  215 230 201 201
   query99  1187118110181018
   Total cold run time: 262147 ms
   Total hot run time: 175571 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-17 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4733854633

   
   
   TPC-H: Total hot run time: 29095 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 6d0556f95e554965020bb6161014318bade90d59, 
data reload: false
   
   -- Round 1 --
   
   q1   17841   405939763976
   q2   1990305 185 185
   q3   10394   1392839 839
   q4   4684467 348 348
   q5   7514857 588 588
   q6   213 182 142 142
   q7   780 839 631 631
   q8   10004   164915761576
   q9   6132442845284428
   q10  6780177615461546
   q11  442 269 239 239
   q12  641 432 299 299
   q13  18137   340727682768
   q14  269 253 243 243
   q15  q16 781 776 706 706
   q17  1033857 924 857
   q18  6860579655985598
   q19  1327120510781078
   q20  520 417 271 271
   q21  5865269924732473
   q22  441 356 304 304
   Total cold run time: 102648 ms
   Total hot run time: 29095 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4364436343074307
   q2   340 348 235 235
   q3   4609495444074407
   q4   2130220213891389
   q5   4465432143144314
   q6   231 180 125 125
   q7   1733207516821682
   q8   2535223821282128
   q9   8061808280508050
   q10  4845477442984298
   q11  579 399 374 374
   q12  792 902 558 558
   q13  3311368729642964
   q14  302 318 277 277
   q15  q16 700 730 649 649
   q17  1322135513281328
   q18  8264730571767176
   q19  1151110111081101
   q20  2225222019621962
   q21  5384465445374537
   q22  536 440 386 386
   Total cold run time: 57879 ms
   Total hot run time: 52247 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-17 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4733271293

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-16 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4725590622

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_ea4d21fae5f6b14cc5f089a4374de552fcfb5089_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_ea4d21fae5f6b14cc5f089a4374de552fcfb5089_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 58.34% (22324/38266) |
   | Line Coverage | 41.69% (222054/532597) |
   | Region Coverage   | 37.97% (179215/471978) |
   | Branch Coverage   | 38.61% (77185/199884) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-16 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4721402138

   
   
   ClickBench: Total hot run time: 25.09 s
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
   ClickBench test result on commit ea4d21fae5f6b14cc5f089a4374de552fcfb5089, 
data reload: false
   
   query1   0.000.000.01
   query2   0.100.040.05
   query3   0.260.140.13
   query4   1.610.130.13
   query5   0.260.220.22
   query6   1.221.091.03
   query7   0.040.010.01
   query8   0.060.040.04
   query9   0.380.320.31
   query10  0.560.560.62
   query11  0.190.150.14
   query12  0.180.140.14
   query13  0.480.480.48
   query14  1.021.021.00
   query15  0.610.590.59
   query16  0.320.320.33
   query17  1.131.131.08
   query18  0.230.210.22
   query19  1.991.991.90
   query20  0.020.010.01
   query21  15.44   0.250.13
   query22  4.580.050.05
   query23  16.12   0.310.12
   query24  2.940.420.35
   query25  0.130.050.03
   query26  0.740.200.17
   query27  0.040.030.04
   query28  3.540.850.53
   query29  12.48   4.373.47
   query30  0.260.160.14
   query31  2.770.600.32
   query32  3.220.600.48
   query33  3.303.163.17
   query34  15.52   4.223.50
   query35  3.553.473.52
   query36  0.560.450.44
   query37  0.080.070.06
   query38  0.050.030.04
   query39  0.030.040.03
   query40  0.170.160.15
   query41  0.080.030.03
   query42  0.040.030.03
   query43  0.050.040.03
   Total cold run time: 96.35 s
   Total hot run time: 25.09 s
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-16 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4721363538

   
   
   TPC-DS: Total hot run time: 175004 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit ea4d21fae5f6b14cc5f089a4374de552fcfb5089, 
data reload: false
   
   query5   4320624 475 475
   query6   438 188 179 179
   query7   4825564 303 303
   query8   369 217 215 215
   query9   8762395539703955
   query10  448 339 262 262
   query11  5901236721312131
   query12  160 101 94  94
   query13  1256610 409 409
   query14  6402540950565056
   query14_14341437343714371
   query15  200 198 171 171
   query16  987 450 409 409
   query17  1094685 554 554
   query18  2428459 325 325
   query19  202 175 147 147
   query20  110 105 103 103
   query21  216 139 112 112
   query22  13710   13591   13473   13473
   query23  17359   16401   16218   16218
   query23_116242   16234   16241   16234
   query24  7651173812861286
   query24_11304127412851274
   query25  544 432 385 385
   query26  1316330 166 166
   query27  2681542 351 351
   query28  4466201020172010
   query29  1083600 468 468
   query30  315 231 203 203
   query31  10961075944 944
   query32  110 58  59  58
   query33  505 308 255 255
   query34  11901100659 659
   query35  745 778 671 671
   query36  1367137112231223
   query37  156 100 87  87
   query38  3198313230633063
   query39  942 899 891 891
   query39_1860 868 873 868
   query40  214 120 101 101
   query41  64  63  60  60
   query42  94  93  91  91
   query43  341 337 285 285
   query44  1474787 800 787
   query45  193 182 180 180
   query46  10781210762 762
   query47  2427242323842384
   query48  432 440 304 304
   query49  628 483 363 363
   query50  1008346 253 253
   query51  4396433442634263
   query52  87  87  77  77
   query53  250 265 191 191
   query54  276 232 209 209
   query55  82  76  68  68
   query56  243 245 223 223
   query57  1494149613781378
   query58  250 221 208 208
   query59  1663167714911491
   query60  308 263 229 229
   query61  200 164 173 164
   query62  706 659 595 595
   query63  225 196 192 192
   query64  2599800 652 652
   query65  4906481047814781
   query66  1822473 356 356
   query67  30101   29747   28971   28971
   query68  30361523940 940
   query69  436 302 284 284
   query70  1025983 960 960
   query71  303 239 223 223
   query72  3282278523152315
   query73  889 795 428 428
   query74  5090496247374737
   query75  2611259122322232
   query76  23301200755 755
   query77  343 372 266 266
   query78  12456   12472   11876   11876
   query79  14741153748 748
   query80  1283472 379 379
   query81  520 281 243 243
   query82  648 155 117 117
   query83  311 274 241 241
   query84  275 146 114 114
   query85  920 554 430 430
   query86  458 299 274 274
   query87  3387334831643164
   query88  3674275927482748
   query89  426 378 331 331
   query90  1937184 174 174
   query91  173 161 133 133
   query92  60  60  57  57
   query93  16571493956 956
   query94  753 336 304 304
   query95  692 371 339 339
   query96  1069777 333 333
   query97  2715269125322532
   query98  214 205 197 197
   query99  1166119110411041
   Total cold run time: 262871 ms
   Total hot run time: 175004 ms
   ```
   
   


-- 
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 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-16 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4721273613

   
   
   TPC-H: Total hot run time: 28730 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit ea4d21fae5f6b14cc5f089a4374de552fcfb5089, 
data reload: false
   
   -- Round 1 --
   
   q1   17645   404440244024
   q2   2072306 184 184
   q3   10280   1374844 844
   q4   4686464 334 334
   q5   7480838 571 571
   q6   190 178 144 144
   q7   747 825 616 616
   q8   9764156715341534
   q9   6236446244374437
   q10  6788179315391539
   q11  442 271 239 239
   q12  655 424 286 286
   q13  18145   332327492749
   q14  269 263 241 241
   q15  q16 778 779 713 713
   q17  988 955 1042955
   q18  6759576154555455
   q19  1416121510491049
   q20  494 394 266 266
   q21  5808265422492249
   q22  425 360 301 301
   Total cold run time: 102067 ms
   Total hot run time: 28730 ms
   
   - Round 2, with runtime_filter_mode=off -
   
   q1   4385430642094209
   q2   324 349 223 223
   q3   4602494944134413
   q4   2022214513511351
   q5   4431431443394314
   q6   234 171 126 126
   q7   1738161617831616
   q8   2537214822092148
   q9   7934798379327932
   q10  4794475942414241
   q11  605 445 406 406
   q12  753 755 533 533
   q13  3356363929582958
   q14  318 319 278 278
   q15  q16 742 755 681 681
   q17  1376138613411341
   q18  8034729471277127
   q19  1098110011181100
   q20  2220223319561956
   q21  5212457044404440
   q22  504 442 416 416
   Total cold run time: 57219 ms
   Total hot run time: 51809 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-16 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4721017053

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-15 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4709299079

   
   
   TPC-DS: Total hot run time: 169412 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 2f198b54edd03d569d9c182f897832426000b492, 
data reload: false
   
   query5   4327631 474 474
   query6   435 199 172 172
   query7   4837546 302 302
   query8   372 217 193 193
   query9   8751410440784078
   query10  469 305 254 254
   query11  5942236821532153
   query12  167 101 97  97
   query13  1317620 413 413
   query14  6913542250445044
   query14_14423441743834383
   query15  203 196 177 177
   query16  1029451 457 451
   query17  1158702 589 589
   query18  2737494 356 356
   query19  215 185 148 148
   query20  113 111 105 105
   query21  229 148 120 120
   query22  13700   13571   13571   13571
   query23  17408   16499   16199   16199
   query23_116247   16437   16330   16330
   query24  7573177612961296
   query24_11297131913161316
   query25  584 458 412 412
   query26  1304315 169 169
   query27  2542536 348 348
   query28  4375207020292029
   query29  1084644 513 513
   query30  313 231 196 196
   query31  11261088962 962
   query32  112 63  64  63
   query33  533 339 248 248
   query34  11751101685 685
   query35  739 768 678 678
   query36  1378139812701270
   query37  153 100 87  87
   query38  3235317630643064
   query39  937 903 893 893
   query39_1905 904 881 881
   query40  219 120 98  98
   query41  62  61  61  61
   query42  94  91  93  91
   query43  333 330 294 294
   query44  
   query45  192 186 178 178
   query46  10651254732 732
   query47  2304234422532253
   query48  407 423 299 299
   query49  615 472 340 340
   query50  1013348 263 263
   query51  4302430842124212
   query52  88  87  76  76
   query53  241 273 192 192
   query54  273 209 189 189
   query55  81  75  69  69
   query56  231 223 220 220
   query57  1422140513041304
   query58  232 202 199 199
   query59  1547163114531453
   query60  281 241 237 237
   query61  157 145 147 145
   query62  701 646 592 592
   query63  225 191 186 186
   query64  2486757 625 625
   query65  
   query66  1738459 334 334
   query67  29674   29628   29574   29574
   query68  
   query69  478 296 270 270
   query70  1001982 946 946
   query71  297 214 213 213
   query72  2861266224202420
   query73  876 801 426 426
   query74  5116496047664766
   query75  2637259422292229
   query76  23271182782 782
   query77  347 398 297 297
   query78  12476   12458   11883   11883
   query79  14191042794 794
   query80  579 456 381 381
   query81  446 280 238 238
   query82  576 158 122 122
   query83  353 281 248 248
   query84  
   query85  845 517 417 417
   query86  370 297 296 296
   query87  3374336331683168
   query88  3668274627312731
   query89  432 388 333 333
   query90  1875188 182 182
   query91  175 153 130 130
   query92  64  63  59  59
   query93  15801426874 874
   query94  517 328 308 308
   query95  697 478 345 345
   query96  1000800 340 340
   query97  2687269725572557
   query98  219 204 199 199
   query99  1152118110251025
   Total cold run time: 251091 ms
   Total hot run time: 169412 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-15 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4709184278

   
   
   TPC-H: Total hot run time: 28758 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 2f198b54edd03d569d9c182f897832426000b492, 
data reload: false
   
   -- Round 1 --
   orders   Doris   NULLNULL0   0   0   NULL0   
NULLNULL2023-12-26 18:27:23 2023-12-26 18:42:55 NULLutf-8   
NULLNULL
   
   q1   17623   399139783978
   q2   q3  10772   1472806 806
   q4   4678478 343 343
   q5   7509893 585 585
   q6   183 167 133 133
   q7   761 818 625 625
   q8   9344150716961507
   q9   5926446244604460
   q10  6779179215341534
   q11  430 271 249 249
   q12  626 424 291 291
   q13  18130   337627652765
   q14  264 264 240 240
   q15  q16 823 771 711 711
   q17  938 1002890 890
   q18  7133574755225522
   q19  1287126910941094
   q20  527 410 264 264
   q21  5783261324602460
   q22  439 354 301 301
   Total cold run time: 99955 ms
   Total hot run time: 28758 ms
   
   - Round 2, with runtime_filter_mode=off -
   orders   Doris   NULLNULL15000   42  6422171781  
NULL22778155NULLNULL2023-12-26 18:27:23 2023-12-26 
18:42:55 NULLutf-8   NULLNULL
   
   q1   4360433643094309
   q2   q3  4518496542914291
   q4   2086221114011401
   q5   4460430642674267
   q6   233 175 129 129
   q7   1751166514751475
   q8   2894227121882188
   q9   8158820880088008
   q10  4835478643014301
   q11  561 420 373 373
   q12  745 745 528 528
   q13  3410363530063006
   q14  298 320 272 272
   q15  q16 695 725 650 650
   q17  1341133713231323
   q18  7907726572697265
   q19  1172115811511151
   q20  2221222619571957
   q21  5272459944504450
   q22  527 458 411 411
   Total cold run time: 57444 ms
   Total hot run time: 51755 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-15 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4708102548

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-15 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4708101533

   /review


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699765627

   
   
   TPC-DS: Total hot run time: 168997 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 70abcfef680cbde471614dfa82ad7e3695ec7af9, 
data reload: false
   
   query5   4302618 467 467
   query6   430 185 170 170
   query7   4875547 287 287
   query8   363 208 202 202
   query9   8759404040514040
   query10  473 300 255 255
   query11  5840232421772177
   query12  154 98  100 98
   query13  1279620 412 412
   query14  6826539550625062
   query14_14370433644384336
   query15  200 192 172 172
   query16  992 442 433 433
   query17  1091682 558 558
   query18  2697467 328 328
   query19  191 181 140 140
   query20  109 109 103 103
   query21  214 138 113 113
   query22  13658   13511   13427   13427
   query23  17219   16445   16169   16169
   query23_116272   16181   16266   16181
   query24  7578174712991299
   query24_11283130513231305
   query25  529 432 368 368
   query26  1323319 165 165
   query27  2687534 326 326
   query28  4388204420332033
   query29  1068621 511 511
   query30  308 233 198 198
   query31  11281075963 963
   query32  112 62  58  58
   query33  528 323 254 254
   query34  11801170647 647
   query35  744 789 697 697
   query36  1387142412391239
   query37  149 105 95  95
   query38  3211313430363036
   query39  924 922 903 903
   query39_1882 873 874 873
   query40  224 127 103 103
   query41  69  66  68  66
   query42  97  95  95  95
   query43  327 327 283 283
   query44  
   query45  191 191 179 179
   query46  10831187733 733
   query47  2424244222792279
   query48  425 441 315 315
   query49  649 481 361 361
   query50  1118358 262 262
   query51  4386433542434243
   query52  89  88  80  80
   query53  254 276 194 194
   query54  278 226 215 215
   query55  79  78  72  72
   query56  257 242 220 220
   query57  1423137613101310
   query58  253 220 214 214
   query59  1599168614501450
   query60  332 249 236 236
   query61  179 173 173 173
   query62  696 655 583 583
   query63  233 187 188 187
   query64  2516739 595 595
   query65  
   query66  1739452 339 339
   query67  29607   29559   29489   29489
   query68  
   query69  414 290 277 277
   query70  978 977 981 977
   query71  301 221 199 199
   query72  2887261823052305
   query73  840 776 437 437
   query74  5094493847804780
   query75  2617256122732273
   query76  23181138793 793
   query77  344 371 279 279
   query78  12312   12398   11938   11938
   query79  13981056763 763
   query80  1285452 374 374
   query81  518 276 237 237
   query82  594 152 118 118
   query83  318 282 242 242
   query84  
   query85  903 496 405 405
   query86  415 298 286 286
   query87  3401342431813181
   query88  3606276127252725
   query89  418 378 331 331
   query90  1916181 190 181
   query91  171 155 126 126
   query92  62  56  55  55
   query93  16281460946 946
   query94  702 330 311 311
   query95  681 360 424 360
   query96  1079824 325 325
   query97  2685268825742574
   query98  212 207 197 197
   query99  1150117310371037
   Total cold run time: 251926 ms
   Total hot run time: 168997 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699740326

   
   
   TPC-H: Total hot run time: 28711 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 70abcfef680cbde471614dfa82ad7e3695ec7af9, 
data reload: false
   
   -- Round 1 --
   orders   Doris   NULLNULL0   0   0   NULL0   
NULLNULL2023-12-26 18:27:23 2023-12-26 18:42:55 NULLutf-8   
NULLNULL
   
   q1   17653   394539543945
   q2   q3  10809   1355797 797
   q4   4683475 348 348
   q5   7617853 588 588
   q6   182 175 141 141
   q7   767 825 616 616
   q8   9615154916611549
   q9   7095445345054453
   q10  6738180015241524
   q11  434 270 246 246
   q12  657 425 282 282
   q13  18194   338927822782
   q14  273 257 241 241
   q15  q16 823 762 701 701
   q17  1138913 927 913
   q18  6801570855505550
   q19  12811216969 969
   q20  521 388 264 264
   q21  5626264125052505
   q22  418 349 297 297
   Total cold run time: 101325 ms
   Total hot run time: 28711 ms
   
   - Round 2, with runtime_filter_mode=off -
   orders   Doris   NULLNULL15000   42  6422171781  
NULL22778155NULLNULL2023-12-26 18:27:23 2023-12-26 
18:42:55 NULLutf-8   NULLNULL
   
   q1   4351421742304217
   q2   q3  4471496742764276
   q4   2055215713641364
   q5   4379425442474247
   q6   224 172 128 128
   q7   1712164216941642
   q8   2572223420882088
   q9   7902794379327932
   q10  4767475042894289
   q11  573 419 401 401
   q12  741 734 519 519
   q13  3559357530223022
   q14  305 305 276 276
   q15  q16 747 737 670 670
   q17  1358131012981298
   q18  7942746769106910
   q19  1125113210861086
   q20  2215221219531953
   q21  5225457544434443
   q22  538 458 412 412
   Total cold run time: 56761 ms
   Total hot run time: 51173 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699653524

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699257834

   
   
   TPC-DS: Total hot run time: 168036 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit 70abcfef680cbde471614dfa82ad7e3695ec7af9, 
data reload: false
   
   query5   4306618 475 475
   query6   442 185 174 174
   query7   4820543 298 298
   query8   364 211 197 197
   query9   8752400839933993
   query10  451 306 260 260
   query11  5908233621442144
   query12  160 101 93  93
   query13  1255625 414 414
   query14  6876538350185018
   query14_14342434843664348
   query15  202 192 168 168
   query16  994 443 408 408
   query17  1113680 550 550
   query18  2698471 336 336
   query19  204 180 137 137
   query20  111 107 102 102
   query21  216 133 115 115
   query22  13539   13601   13389   13389
   query23  17351   16431   16074   16074
   query23_116185   16277   16277   16277
   query24  7586178413021302
   query24_11284130313171303
   query25  564 462 388 388
   query26  1313326 163 163
   query27  2652547 353 353
   query28  4433209120672067
   query29  1084632 495 495
   query30  310 236 200 200
   query31  11241062999 999
   query32  118 64  59  59
   query33  527 324 259 259
   query34  11911174651 651
   query35  756 787 684 684
   query36  1381142112281228
   query37  162 106 91  91
   query38  3189315530643064
   query39  922 918 889 889
   query39_1885 880 879 879
   query40  220 126 103 103
   query41  69  69  68  68
   query42  97  96  94  94
   query43  312 317 273 273
   query44  
   query45  196 187 181 181
   query46  10711181728 728
   query47  2353238622132213
   query48  420 426 301 301
   query49  641 481 365 365
   query50  1006353 265 265
   query51  4428427942174217
   query52  89  92  76  76
   query53  239 273 192 192
   query54  281 224 218 218
   query55  81  78  73  73
   query56  256 275 214 214
   query57  1431137913411341
   query58  243 204 200 200
   query59  1566161613831383
   query60  274 244 207 207
   query61  151 150 148 148
   query62  714 647 582 582
   query63  229 182 187 182
   query64  2539756 609 609
   query65  
   query66  1761443 331 331
   query67  29583   29607   28862   28862
   query68  
   query69  424 305 264 264
   query70  964 964 931 931
   query71  309 221 194 194
   query72  2998271822942294
   query73  831 734 416 416
   query74  5156494247894789
   query75  2652258221962196
   query76  23001130751 751
   query77  344 372 279 279
   query78  12333   12348   11909   11909
   query79  14611007808 808
   query80  1182451 372 372
   query81  510 278 235 235
   query82  609 162 126 126
   query83  343 272 242 242
   query84  
   query85  916 493 400 400
   query86  407 288 282 282
   query87  3367332032863286
   query88  3598276027502750
   query89  431 379 326 326
   query90  1763172 174 172
   query91  170 158 140 140
   query92  61  60  56  56
   query93  15321465900 900
   query94  641 351 291 291
   query95  679 459 337 337
   query96  999 780 375 375
   query97  2682267525472547
   query98  210 205 197 197
   query99  1147119810081008
   Total cold run time: 251337 ms
   Total hot run time: 168036 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699231055

   
   
   TPC-H: Total hot run time: 28707 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit 70abcfef680cbde471614dfa82ad7e3695ec7af9, 
data reload: false
   
   -- Round 1 --
   orders   Doris   NULLNULL0   0   0   NULL0   
NULLNULL2023-12-26 18:27:23 2023-12-26 18:42:55 NULLutf-8   
NULLNULL
   
   q1   17707   402739463946
   q2   q3  10776   1351785 785
   q4   4684471 336 336
   q5   7523847 570 570
   q6   178 169 134 134
   q7   761 822 616 616
   q8   9897158515821582
   q9   6677443944764439
   q10  6807180715071507
   q11  439 272 250 250
   q12  634 424 286 286
   q13  18172   338427662766
   q14  275 261 243 243
   q15  q16 820 773 712 712
   q17  17841129683 683
   q18  6648568255135513
   q19  1516126910781078
   q20  512 403 262 262
   q21  6198276126712671
   q22  439 375 328 328
   Total cold run time: 102447 ms
   Total hot run time: 28707 ms
   
   - Round 2, with runtime_filter_mode=off -
   orders   Doris   NULLNULL15000   42  6422171781  
NULL22778155NULLNULL2023-12-26 18:27:23 2023-12-26 
18:42:55 NULLutf-8   NULLNULL
   
   q1   4837478746274627
   q2   q3  4962514745744574
   q4   2106215713931393
   q5   4821473947064706
   q6   234 181 131 131
   q7   1836172715911591
   q8   2364190718831883
   q9   7375740173957395
   q10  4724462641864186
   q11  528 384 344 344
   q12  743 735 521 521
   q13  2971331627802780
   q14  269 285 250 250
   q15  q16 674 689 608 608
   q17  1276124112411241
   q18  7250695068276827
   q19  1120108511101085
   q20  2213220019521952
   q21  5225450943254325
   q22  534 473 418 418
   Total cold run time: 56062 ms
   Total hot run time: 50837 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699157151

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


heguanhui commented on code in PR #64241:
URL: https://github.com/apache/doris/pull/64241#discussion_r3408259864


##
be/CMakeLists.txt:
##
@@ -761,11 +761,14 @@ endif()
 
 if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
 set(ASAN_LIBS -static-libasan)
-set(LSAN_LIBS -static-liblsan)
-set(UBSAN_LIBS -static-libubsan ${MALLOCLIB})
+set(LSAN_LIBS -static-liblsan -lgcc_eh)
+set(UBSAN_LIBS -static-libubsan -lgcc_eh ${MALLOCLIB})
 set(TSAN_LIBS -static-libtsan)
 else ()
-set(UBSAN_LIBS -rtlib=compiler-rt ${MALLOCLIB})
+set(ASAN_LIBS -rtlib=compiler-rt -lgcc_eh)

Review Comment:
   I will fix it



##
cloud/CMakeLists.txt:
##
@@ -357,11 +357,14 @@ endif()
 
 if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
 set(ASAN_LIBS -static-libasan)
-set(LSAN_LIBS -static-liblsan)
-set(UBSAN_LIBS -static-libubsan ${MALLOCLIB})
+set(LSAN_LIBS -static-liblsan -lgcc_eh)
+set(UBSAN_LIBS -static-libubsan -lgcc_eh ${MALLOCLIB})
 set(TSAN_LIBS -static-libtsan)
 else ()
-set(UBSAN_LIBS -rtlib=compiler-rt ${MALLOCLIB})
+set(ASAN_LIBS -rtlib=compiler-rt -lgcc_eh)

Review Comment:
   I will fix it



-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


github-actions[bot] commented on code in PR #64241:
URL: https://github.com/apache/doris/pull/64241#discussion_r3408206664


##
be/CMakeLists.txt:
##
@@ -761,11 +761,14 @@ endif()
 
 if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
 set(ASAN_LIBS -static-libasan)
-set(LSAN_LIBS -static-liblsan)
-set(UBSAN_LIBS -static-libubsan ${MALLOCLIB})
+set(LSAN_LIBS -static-liblsan -lgcc_eh)
+set(UBSAN_LIBS -static-libubsan -lgcc_eh ${MALLOCLIB})
 set(TSAN_LIBS -static-libtsan)
 else ()
-set(UBSAN_LIBS -rtlib=compiler-rt ${MALLOCLIB})
+set(ASAN_LIBS -rtlib=compiler-rt -lgcc_eh)

Review Comment:
   This Clang branch is also used on macOS. `.github/workflows/be-ut-mac.yml` 
runs `./run-be-ut.sh`, and `run-be-ut.sh` defaults `BUILD_TYPE_UT=ASAN` then 
passes `CMAKE_BUILD_TYPE=ASAN_UT`; that path appends `ASAN_LIBS` from here. On 
Darwin there is no `libgcc_eh`, so the macOS BE UT link will fail with a 
missing `gcc_eh` library even though it worked before this change. Please scope 
`-lgcc_eh` to the Linux sanitizer path, or otherwise select a 
platform-appropriate unwind provider for Darwin.



##
cloud/CMakeLists.txt:
##
@@ -357,11 +357,14 @@ endif()
 
 if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
 set(ASAN_LIBS -static-libasan)
-set(LSAN_LIBS -static-liblsan)
-set(UBSAN_LIBS -static-libubsan ${MALLOCLIB})
+set(LSAN_LIBS -static-liblsan -lgcc_eh)
+set(UBSAN_LIBS -static-libubsan -lgcc_eh ${MALLOCLIB})
 set(TSAN_LIBS -static-libtsan)
 else ()
-set(UBSAN_LIBS -rtlib=compiler-rt ${MALLOCLIB})
+set(ASAN_LIBS -rtlib=compiler-rt -lgcc_eh)

Review Comment:
   Same issue in the Cloud CMake path: this `else()` covers Darwin Clang as 
well as Linux Clang, but `-lgcc_eh` is a Linux/GCC unwind library. 
`cloud/CMakeLists.txt` explicitly has an Apple test path, and local 
`run-cloud-ut.sh` sanitizer builds also use these variables, so Cloud sanitizer 
links on macOS will now fail looking for `gcc_eh`. Please guard `-lgcc_eh` to 
Linux or choose the Darwin unwind/runtime behavior separately.



-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-13 Thread via GitHub


zclllyybb commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4699003538

   /review


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4654865330

   # BE Regression && UT Coverage Report
   Increment line coverage `100% (0/0)` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_ab4fbe8809def3dcd7e17264c8d077930e12fad3_merge/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/64241_ab4fbe8809def3dcd7e17264c8d077930e12fad3_merge/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 63.73% (24407/38298) |
   | Line Coverage | 47.58% (253061/531853) |
   | Region Coverage   | 44.29% (208748/471332) |
   | Branch Coverage   | 45.45% (90641/199431) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4652419793

   
   
   TPC-DS: Total hot run time: 169679 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
   TPC-DS sf100 test result on commit ab4fbe8809def3dcd7e17264c8d077930e12fad3, 
data reload: false
   
   query5   4352626 484 484
   query6   473 198 188 188
   query7   4884558 321 321
   query8   384 218 201 201
   query9   8766411440624062
   query10  473 310 254 254
   query11  5921233921742174
   query12  169 108 103 103
   query13  1266630 446 446
   query14  6397543350975097
   query14_14462443544384435
   query15  218 200 176 176
   query16  1001448 392 392
   query17  973 735 626 626
   query18  2484495 355 355
   query19  214 189 149 149
   query20  112 109 114 109
   query21  219 143 122 122
   query22  13712   13483   13403   13403
   query23  17465   16696   16190   16190
   query23_116368   16388   16366   16366
   query24  7568178813191319
   query24_11304132713211321
   query25  589 479 415 415
   query26  1312314 170 170
   query27  2707642 338 338
   query28  4520201820232018
   query29  1049608 475 475
   query30  310 244 202 202
   query31  11311066958 958
   query32  117 62  59  59
   query33  526 315 250 250
   query34  11721160667 667
   query35  756 794 684 684
   query36  1420139512361236
   query37  157 114 91  91
   query38  3213316130553055
   query39  934 904 901 901
   query39_1887 889 876 876
   query40  223 126 103 103
   query41  66  63  68  63
   query42  95  96  94  94
   query43  324 334 284 284
   query44  
   query45  193 193 185 185
   query46  11131244761 761
   query47  2378236122292229
   query48  380 409 291 291
   query49  634 478 369 369
   query50  1081362 255 255
   query51  4354434243184318
   query52  91  95  90  90
   query53  260 287 194 194
   query54  281 246 207 207
   query55  80  80  71  71
   query56  285 227 228 227
   query57  1449139913321332
   query58  252 210 208 208
   query59  1614166814351435
   query60  273 255 232 232
   query61  162 156 157 156
   query62  712 652 586 586
   query63  229 193 187 187
   query64  2567781 655 655
   query65  
   query66  1815463 335 335
   query67  29773   29771   29591   29591
   query68  
   query69  423 297 280 280
   query70  978 970 985 970
   query71  296 226 216 216
   query72  2987271624172417
   query73  829 774 439 439
   query74  5384501147604760
   query75  2686258322452245
   query76  23251159808 808
   query77  354 374 284 284
   query78  12527   12766   11980   11980
   query79  14781110736 736
   query80  584 497 436 436
   query81  449 284 248 248
   query82  838 166 125 125
   query83  362 290 265 265
   query84  
   query85  967 591 444 444
   query86  370 302 287 287
   query87  3464337131973197
   query88  3649272827212721
   query89  423 378 334 334
   query90  1984173 179 173
   query91  175 163 142 142
   query92  65  63  58  58
   query93  14961462901 901
   query94  542 358 313 313
   query95  694 467 346 346
   query96  1007780 327 327
   query97  2752272325322532
   query98  228 209 202 202
   query99  1191120410431043
   Total cold run time: 252668 ms
   Total hot run time: 169679 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about 

Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4652321004

   
   
   TPC-H: Total hot run time: 29285 ms
   
   ```
   machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
   scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
   Tpch sf100 test result on commit ab4fbe8809def3dcd7e17264c8d077930e12fad3, 
data reload: false
   
   -- Round 1 --
   orders   Doris   NULLNULL0   0   0   NULL0   
NULLNULL2023-12-26 18:27:23 2023-12-26 18:42:55 NULLutf-8   
NULLNULL
   
   q1   17608   403240384032
   q2   q3  10853   1409821 821
   q4   4690477 344 344
   q5   7549893 590 590
   q6   182 170 137 137
   q7   768 858 634 634
   q8   9365147915131479
   q9   5858455045484548
   q10  6739181815641564
   q11  442 274 251 251
   q12  630 431 292 292
   q13  18140   337728002800
   q14  270 260 249 249
   q15  q16 787 768 710 710
   q17  966 979 918 918
   q18  7060583755695569
   q19  1318125210271027
   q20  487 387 261 261
   q21  6190284727482748
   q22  461 385 311 311
   Total cold run time: 100363 ms
   Total hot run time: 29285 ms
   
   - Round 2, with runtime_filter_mode=off -
   orders   Doris   NULLNULL15000   42  6422171781  
NULL22778155NULLNULL2023-12-26 18:27:23 2023-12-26 
18:42:55 NULLutf-8   NULLNULL
   
   q1   5075478249034782
   q2   q3  4942534846304630
   q4   2147223914061406
   q5   4880484646964696
   q6   233 177 128 128
   q7   1866183416831683
   q8   2442214321422142
   q9   8013762175417541
   q10  4750467442004200
   q11  539 395 368 368
   q12  732 742 524 524
   q13  3071339627912791
   q14  283 284 250 250
   q15  q16 689 695 611 611
   q17  1300127212611261
   q18  7392686570106865
   q19  11731113
   q20  2224221619641964
   q21  5322465945064506
   q22  525 460 402 402
   Total cold run time: 57598 ms
   Total hot run time: 51861 ms
   ```
   
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4650143511

   # BE UT Coverage Report
   Increment line coverage ` ` :tada:
   
   [Increment coverage 
report](http://coverage.selectdb-in.cc/coverage/ab4fbe8809def3dcd7e17264c8d077930e12fad3_ab4fbe8809def3dcd7e17264c8d077930e12fad3/increment_report/index.html)
   [Complete coverage 
report](http://coverage.selectdb-in.cc/coverage/ab4fbe8809def3dcd7e17264c8d077930e12fad3_ab4fbe8809def3dcd7e17264c8d077930e12fad3/report/index.html)
   | Category  | Coverage   |
   |---||
   | Function Coverage | 53.92% (21137/39203) |
   | Line Coverage | 37.62% (201224/534899) |
   | Region Coverage   | 33.65% (157871/469128) |
   | Branch Coverage   | 34.69% (69083/199148) |


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


heguanhui commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4649194003

   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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [PR] [fix](be) Fix undefined _Unwind_* symbols in UBSAN and LSAN builds [doris]

2026-06-08 Thread via GitHub


hello-stephen commented on PR #64241:
URL: https://github.com/apache/doris/pull/64241#issuecomment-4648413364

   
   Thank you for your contribution to Apache Doris.
   Don't know what should be done next? See [How to process your 
PR](https://cwiki.apache.org/confluence/display/DORIS/How+to+process+your+PR).
   
   Please clearly describe your PR:
   1. What problem was fixed (it's best to include specific error reporting 
information). How it was fixed.
   2. Which behaviors were modified. What was the previous behavior, what is it 
now, why was it modified, and what possible impacts might there be.
   3. What features were added. Why was this function added?
   4. Which code was refactored and why was this part of the code refactored?
   5. Which functions were optimized and what is the difference before and 
after the optimization?
   


-- 
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 unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]