Update TableFunctionSQLite.cpp

This commit is contained in:
Kseniia Sumarokova 2021-07-13 14:40:47 +03:00 committed by GitHub
parent d80bcf0bd3
commit 8672346f5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ void TableFunctionSQLite::parseArguments(const ASTPtr & ast_function, ContextPtr
std::error_code err;
String canonical_path = fs::canonical(database_path, err);
/// The path existance is also checked here.
/// The path existence is also checked.
if (err)
throw Exception(ErrorCodes::PATH_ACCESS_DENIED, "SQLite database path '{}' is invalid. Error: {}", database_path, err.message());