This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch spill_and_reserve in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/spill_and_reserve by this push: new 19785489e87 fix bug 19785489e87 is described below commit 19785489e87650cb00ac059ce2ac28e22f8e6090 Author: yiguolei <yiguo...@gmail.com> AuthorDate: Wed Sep 11 15:17:53 2024 +0800 fix bug --- be/src/vec/exec/scan/scanner_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/exec/scan/scanner_context.cpp b/be/src/vec/exec/scan/scanner_context.cpp index ed50c195d74..801ed1860f3 100644 --- a/be/src/vec/exec/scan/scanner_context.cpp +++ b/be/src/vec/exec/scan/scanner_context.cpp @@ -322,7 +322,7 @@ Status ScannerContext::get_block_from_queue(RuntimeState* state, vectorized::Blo } } } - if (_local_state->low_memory_mode()) { + if (!_local_state->low_memory_mode()) { // scale up RETURN_IF_ERROR(_try_to_scale_up()); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org