mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
fix exception message in Pipe::addTransform
This commit is contained in:
parent
d2b787429d
commit
5a6d37d8e7
@ -556,7 +556,7 @@ void Pipe::addTransform(ProcessorPtr transform, InputPort * totals, InputPort *
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR, "Cannot add transform consuming totals to Pipe because Pipe does not have totals");
|
||||
|
||||
if (extremes && !extremes_port)
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR, "Cannot add transform consuming extremes to Pipe because it already has extremes");
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR, "Cannot add transform consuming extremes to Pipe because Pipe does not have extremes");
|
||||
|
||||
if (totals)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user