Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos in ExternalLoader.h and CrossToInnerJoinVisitor.cpp #8008

Merged
merged 1 commit into from
Dec 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class CheckExpressionVisitorData
size_t canMoveEqualsToJoinOn(const ASTFunction & node)
{
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)
return false;

Expand Down
2 changes: 1 addition & 1 deletion dbms/src/Interpreters/ExternalLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
* The monitoring thread wakes up every 'check_period_sec' seconds and checks
* modification time of objects' configuration file. If said time is greater than
Expand Down