mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Fixed typos in ExternalLoader.h and CrossToInnerJoinVisitor.cpp
This commit is contained in:
parent
54088db46a
commit
108c792fd9
@ -167,7 +167,7 @@ private:
|
|||||||
size_t canMoveEqualsToJoinOn(const ASTFunction & node)
|
size_t canMoveEqualsToJoinOn(const ASTFunction & node)
|
||||||
{
|
{
|
||||||
if (!node.arguments)
|
if (!node.arguments)
|
||||||
throw Exception("Logical error: function requires argiment", ErrorCodes::LOGICAL_ERROR);
|
throw Exception("Logical error: function requires arguments", ErrorCodes::LOGICAL_ERROR);
|
||||||
if (node.arguments->children.size() != 2)
|
if (node.arguments->children.size() != 2)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ struct ExternalLoaderConfigSettings
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/** Iterface for manage user-defined objects.
|
/** Interface for manage user-defined objects.
|
||||||
* Monitors configuration file and automatically reloads objects in separate threads.
|
* Monitors configuration file and automatically reloads objects in separate threads.
|
||||||
* The monitoring thread wakes up every 'check_period_sec' seconds and checks
|
* The monitoring thread wakes up every 'check_period_sec' seconds and checks
|
||||||
* modification time of objects' configuration file. If said time is greater than
|
* modification time of objects' configuration file. If said time is greater than
|
||||||
|
Loading…
Reference in New Issue
Block a user