From 108c792fd9ff8cdc50fa01b00f3da15f037ce451 Mon Sep 17 00:00:00 2001 From: Alexander Burmak Date: Thu, 7 Nov 2019 14:44:02 +0300 Subject: [PATCH] Fixed typos in ExternalLoader.h and CrossToInnerJoinVisitor.cpp --- dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp | 2 +- dbms/src/Interpreters/ExternalLoader.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp b/dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp index 4fd67c2031b..61e57c4d490 100644 --- a/dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp +++ b/dbms/src/Interpreters/CrossToInnerJoinVisitor.cpp @@ -167,7 +167,7 @@ private: 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; diff --git a/dbms/src/Interpreters/ExternalLoader.h b/dbms/src/Interpreters/ExternalLoader.h index 67be8fc5076..19570d897a5 100644 --- a/dbms/src/Interpreters/ExternalLoader.h +++ b/dbms/src/Interpreters/ExternalLoader.h @@ -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