mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
typo in error messages [#CONV-2807]
This commit is contained in:
parent
730f8e591b
commit
20e4583662
@ -144,7 +144,7 @@ Block IProfilingBlockInputStream::read()
|
||||
if (limits.read_overflow_mode == Limits::BREAK)
|
||||
return Block();
|
||||
|
||||
throw Exception("Logical error: unkown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
throw Exception("Logical error: unknown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
}
|
||||
|
||||
if (limits.max_execution_time != 0
|
||||
@ -158,7 +158,7 @@ Block IProfilingBlockInputStream::read()
|
||||
if (limits.timeout_overflow_mode == Limits::BREAK)
|
||||
return Block();
|
||||
|
||||
throw Exception("Logical error: unkown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
throw Exception("Logical error: unknown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
}
|
||||
|
||||
if (limits.min_execution_speed
|
||||
|
@ -476,7 +476,7 @@ void Aggregator::execute(BlockInputStreamPtr stream, AggregatedDataVariants & re
|
||||
else if (group_by_overflow_mode == Limits::ANY)
|
||||
no_more_keys = true;
|
||||
else
|
||||
throw Exception("Logical error: unkown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
throw Exception("Logical error: unknown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user