Fixed typos in ExternalLoader.h and CrossToInnerJoinVisitor.cpp

This commit is contained in:
Alexander Burmak 2019-11-07 14:44:02 +03:00
parent 54088db46a
commit 108c792fd9
2 changed files with 2 additions and 2 deletions

View File

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

View File

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