Update reference

This commit is contained in:
Igor Nikonov 2023-06-29 22:30:15 +00:00
parent 42febefa96
commit a705b08bd8
2 changed files with 5 additions and 5 deletions

View File

@ -18,13 +18,13 @@ SELECT
multiIf(
-- ExpressionTransform executes sleep(),
-- so IProcessor::work() will spend 1 sec.
name = 'ExpressionTransform', elapsed_us>1e6,
name = 'ExpressionTransform', elapsed_us>=1e6,
-- SourceFromSingleChunk, that feed data to ExpressionTransform,
-- will feed first block and then wait in PortFull.
name = 'SourceFromSingleChunk', output_wait_elapsed_us>1e6,
name = 'SourceFromSingleChunk', output_wait_elapsed_us>=1e6,
-- NullSource/LazyOutputFormatLazyOutputFormat are the outputs
-- so they cannot starts to execute before sleep(1) will be executed.
input_wait_elapsed_us>1e6)
input_wait_elapsed_us>=1e6)
elapsed,
input_rows,
input_bytes,

View File

@ -18,10 +18,10 @@ SELECT
name = 'ExpressionTransform', elapsed_us>=1e6,
-- SourceFromSingleChunk, that feed data to ExpressionTransform,
-- will feed first block and then wait in PortFull.
name = 'SourceFromSingleChunk', output_wait_elapsed_us>1e6,
name = 'SourceFromSingleChunk', output_wait_elapsed_us>=1e6,
-- NullSource/LazyOutputFormatLazyOutputFormat are the outputs
-- so they cannot starts to execute before sleep(1) will be executed.
input_wait_elapsed_us>1e6)
input_wait_elapsed_us>=1e6)
elapsed,
input_rows,
input_bytes,