mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fix spelling: occurred, execute, which etc
This commit is contained in:
@@ -11725,10 +11725,10 @@ static void test_bug5315()
|
||||
rc= mysql_stmt_prepare(stmt, stmt_text, strlen(stmt_text));
|
||||
DIE_UNLESS(rc == 0);
|
||||
if (!opt_silent)
|
||||
printf("Excuting mysql_change_user\n");
|
||||
printf("Executing mysql_change_user\n");
|
||||
mysql_change_user(mysql, opt_user, opt_password, current_db);
|
||||
if (!opt_silent)
|
||||
printf("Excuting mysql_stmt_execute\n");
|
||||
printf("Executing mysql_stmt_execute\n");
|
||||
rc= mysql_stmt_execute(stmt);
|
||||
DIE_UNLESS(rc != 0);
|
||||
if (rc)
|
||||
@@ -11738,10 +11738,10 @@ static void test_bug5315()
|
||||
}
|
||||
/* check that connection is OK */
|
||||
if (!opt_silent)
|
||||
printf("Excuting mysql_stmt_close\n");
|
||||
printf("Executing mysql_stmt_close\n");
|
||||
mysql_stmt_close(stmt);
|
||||
if (!opt_silent)
|
||||
printf("Excuting mysql_stmt_init\n");
|
||||
printf("Executing mysql_stmt_init\n");
|
||||
stmt= mysql_stmt_init(mysql);
|
||||
rc= mysql_stmt_prepare(stmt, stmt_text, strlen(stmt_text));
|
||||
DIE_UNLESS(rc == 0);
|
||||
|
Reference in New Issue
Block a user