diff options
author | unknown <jimw@mysql.com> | 2005-08-30 12:24:37 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-08-30 12:24:37 -0700 |
commit | aa4820af4055f7b97c2fbf02109965c700cb143e (patch) | |
tree | c95133411d5cb26fe18db49056eeebdad5833e3b /sql/sql_table.cc | |
parent | e6ac9175d13091b8bd7661b5e8ae8d3add81fbb0 (diff) | |
download | mariadb-git-aa4820af4055f7b97c2fbf02109965c700cb143e.tar.gz |
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
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index b593aed1453..92db0143980 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -2948,7 +2948,7 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name, Field **f_ptr,*field; 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; drop_it.rewind(); while ((drop=drop_it++)) |