Commit 56510612 authored by unknown's avatar unknown

Fix incorrect spellings of "dropped" in source and tests. (Bug #12828)


include/my_alloc.h:
  Fix incorrect spelling
mysql-test/t/rpl000009.test:
  Fix incorrect spelling
mysql-test/t/system_mysql_db_fix.test:
  Fix incorrect spelling
sql/sql_table.cc:
  Fix incorrect spelling
tests/mysql_client_test.c:
  Fix incorrect spelling
parent cf57c3cf
...@@ -43,7 +43,7 @@ typedef struct st_mem_root ...@@ -43,7 +43,7 @@ typedef struct st_mem_root
unsigned int block_num; /* allocated blocks counter */ unsigned int block_num; /* allocated blocks counter */
/* /*
first free block in queue test counter (if it exceed first free block in queue test counter (if it exceed
MAX_BLOCK_USAGE_BEFORE_DROP block will be droped in 'used' list) MAX_BLOCK_USAGE_BEFORE_DROP block will be dropped in 'used' list)
*/ */
unsigned int first_block_usage; unsigned int first_block_usage;
......
...@@ -167,7 +167,7 @@ drop database mysqltest2; ...@@ -167,7 +167,7 @@ drop database mysqltest2;
save_master_pos; save_master_pos;
connection slave; connection slave;
sync_with_master; sync_with_master;
# These has to be droped on slave as they are not replicated # These have to be dropped on slave because they are not replicated
drop database mysqltest2; drop database mysqltest2;
drop database mysqltest3; drop database mysqltest3;
......
...@@ -81,7 +81,7 @@ DROP TABLE db, host, user, func, tables_priv, columns_priv, help_category, help_ ...@@ -81,7 +81,7 @@ DROP TABLE db, host, user, func, tables_priv, columns_priv, help_category, help_
-- enable_query_log -- enable_query_log
# check that we droped all system tables # check that we dropped all system tables
show tables; show tables;
# End of 4.1 tests # End of 4.1 tests
...@@ -2948,7 +2948,7 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name, ...@@ -2948,7 +2948,7 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name,
Field **f_ptr,*field; Field **f_ptr,*field;
for (f_ptr=table->field ; (field= *f_ptr) ; f_ptr++) for (f_ptr=table->field ; (field= *f_ptr) ; f_ptr++)
{ {
/* Check if field should be droped */ /* Check if field should be dropped */
Alter_drop *drop; Alter_drop *drop;
drop_it.rewind(); drop_it.rewind();
while ((drop=drop_it++)) while ((drop=drop_it++))
......
...@@ -9177,7 +9177,7 @@ static void test_create_drop() ...@@ -9177,7 +9177,7 @@ static void test_create_drop()
rc= mysql_stmt_execute(stmt_drop); rc= mysql_stmt_execute(stmt_drop);
check_execute(stmt_drop, rc); check_execute(stmt_drop, rc);
if (!opt_silent) if (!opt_silent)
fprintf(stdout, "droped %i\n", i); fprintf(stdout, "dropped %i\n", i);
rc= mysql_stmt_execute(stmt_create_select); rc= mysql_stmt_execute(stmt_create_select);
check_execute(stmt_create, rc); check_execute(stmt_create, rc);
...@@ -9192,7 +9192,7 @@ static void test_create_drop() ...@@ -9192,7 +9192,7 @@ static void test_create_drop()
rc= mysql_stmt_execute(stmt_drop); rc= mysql_stmt_execute(stmt_drop);
check_execute(stmt_drop, rc); check_execute(stmt_drop, rc);
if (!opt_silent) if (!opt_silent)
fprintf(stdout, "droped %i\n", i); fprintf(stdout, "dropped %i\n", i);
} }
mysql_stmt_close(stmt_create); mysql_stmt_close(stmt_create);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment