mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
Update reference
This commit is contained in:
parent
42febefa96
commit
a705b08bd8
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user