This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-1.1-lts
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-1.1-lts by this push:
     new 4b199e2f33 Revert "[enhancement](tuple_stream) add a DCHECK to figure 
out problem (#12934)" (#12998)
4b199e2f33 is described below

commit 4b199e2f33c178526bb498eb6bcf21e7447be9ad
Author: Yongqiang YANG <[email protected]>
AuthorDate: Tue Sep 27 12:16:56 2022 +0800

    Revert "[enhancement](tuple_stream) add a DCHECK to figure out problem 
(#12934)" (#12998)
    
    This reverts commit 5611baab5a43050882ebba95e6a2bfa3f8574024.
    
    It is difficult to figure out the problem, so we revert DCHECK(false) to
    enable run testing using asan.
---
 be/src/runtime/buffered_tuple_stream2.cc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/be/src/runtime/buffered_tuple_stream2.cc 
b/be/src/runtime/buffered_tuple_stream2.cc
index 965641c8f8..d0c9428ffe 100644
--- a/be/src/runtime/buffered_tuple_stream2.cc
+++ b/be/src/runtime/buffered_tuple_stream2.cc
@@ -208,7 +208,6 @@ Status BufferedTupleStream2::new_block_for_write(int64_t 
min_size, bool* got_blo
     DCHECK(!_closed);
     *got_block = false;
     if (min_size > _block_mgr->max_block_size()) {
-        DCHECK(false);
         std::stringstream error_msg;
         error_msg << "Cannot process row that is bigger than the IO size 
(row_size="
                   << PrettyPrinter::print(min_size, TUnit::BYTES)


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

Reply via email to