From 6fa0c90955a354b8285fb85cd4e06d3d76000abf Mon Sep 17 00:00:00 2001 From: wuxiaobai24 Date: Thu, 28 Apr 2022 20:47:49 +0800 Subject: [PATCH] Update src/TableFunctions/TableFunctionFile.cpp Co-authored-by: Kruglov Pavel <48961922+Avogar@users.noreply.github.com> --- src/TableFunctions/TableFunctionFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TableFunctions/TableFunctionFile.cpp b/src/TableFunctions/TableFunctionFile.cpp index b078d07b934..d359f95d219 100644 --- a/src/TableFunctions/TableFunctionFile.cpp +++ b/src/TableFunctions/TableFunctionFile.cpp @@ -56,7 +56,7 @@ void TableFunctionFile::parseFirstArguments(const ASTPtr & arg, ContextPtr conte } else throw Exception( - "The second argument of table function '" + getName() + "' mush be path or file descriptor", ErrorCodes::BAD_ARGUMENTS); + "The first argument of table function '" + getName() + "' mush be path or file descriptor", ErrorCodes::BAD_ARGUMENTS); } }