summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-07-02 06:04:31 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-07-02 06:04:31 +0300
commit90d1e58ed0a148cf850f187e948e9ca24ab3a88d (patch)
treef8478fb16644a87fb6de6d2afa81900b097defd9
parent41b0d98e69740f6d894a369a83efbbe5f7bffdfd (diff)
downloadmariadb-git-90d1e58ed0a148cf850f187e948e9ca24ab3a88d.tar.gz
MDEV-22941: Fix the DBUG_ENTER name
-rw-r--r--sql/sql_show.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc
index 70cab968f43..8eba6ef6027 100644
--- a/sql/sql_show.cc
+++ b/sql/sql_show.cc
@@ -1,5 +1,5 @@
/* Copyright (c) 2000, 2015, Oracle and/or its affiliates.
- Copyright (c) 2009, 2017, MariaDB
+ Copyright (c) 2009, 2020, MariaDB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -4962,16 +4962,16 @@ bool store_schema_shemata(THD* thd, TABLE *table, LEX_STRING *db_name,
*/
static bool verify_database_directory_exists(const LEX_STRING &dbname)
{
- DBUG_ENTER("verity_database_exists");
+ DBUG_ENTER("verify_database_directory_exists");
char path[FN_REFLEN + 16];
uint path_len;
MY_STAT stat_info;
if (!dbname.str[0])
- DBUG_RETURN(true); // Empty database name: does not exits.
+ DBUG_RETURN(true); // Empty database name: does not exist.
path_len= build_table_filename(path, sizeof(path) - 1, dbname.str, "", "", 0);
path[path_len - 1]= 0;
if (!mysql_file_stat(key_file_misc, path, &stat_info, MYF(0)))
- DBUG_RETURN(true); // The database directory was not found: does not exists.
+ DBUG_RETURN(true); // The database directory was not found: does not exist.
DBUG_RETURN(false); // The database directory was found.
}