BiteTheDDDDt opened a new pull request, #21433:
URL: https://github.com/apache/doris/pull/21433

   ## Proposed changes
   ```sql
   SELECT   l_orderkey,   sum(l_extendedprice * (1 - l_discount)) AS revenue,   
o_orderdate,   o_shippriority FROM   customer,   orders,   lineitem WHERE   
c_mktsegment = 'BUILDING'   AND c_custkey = o_custkey   AND l_orderkey = 
o_orderkey   AND o_orderdate < DATE '1995-03-15'   AND l_shipdate > DATE 
'1995-03-15' GROUP BY   l_orderkey,   o_orderdate,   o_shippriority ORDER BY   
revenue DESC,   o_orderdate LIMIT 10;
   ```
   ```cpp
       @     0x55f62049c619  google::LogMessageFatal::~LogMessageFatal()
   
       @     0x55f61b6bc587  doris::vectorized::Block::filter_block_internal()
   
       @     0x55f61cd579ab  
doris::vectorized::VExprContext::execute_conjuncts_and_filter_block()
   
       @     0x55f61cd57607  doris::vectorized::VExprContext::filter_block()
   
       @     0x55f61cb4d57f  doris::vectorized::VScanner::get_block()
   
       @     0x55f61ca97ab5  
doris::vectorized::ScannerScheduler::_scanner_scan()
   
       @     0x55f61ca98ad1  
_ZNSt17_Function_handlerIFvvEZZN5doris10vectorized16ScannerScheduler18_schedule_scannersEPNS2_14ScannerContextEENK3$_0clEvEUlvE0_E9_M_invokeERKSt9_Any_data
   
       @     0x55f61ca9ae0d  
doris::PriorityWorkStealingThreadPool::work_thread()
   
       @     0x55f622f26e00  execute_native_thread_routine
   
       @     0x7f0011884450  start_thread
   
       @     0x7f0011b09d53  clone
   ```
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[[email protected]](mailto:[email protected]) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


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

Reply via email to