typo in error messages [#CONV-2807]

This commit is contained in:
Vyacheslav Alipov 2013-05-17 08:02:34 +00:00
parent 730f8e591b
commit 20e4583662
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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);
}
}