Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0dc444ec
Commit
0dc444ec
authored
Aug 30, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect spellings of "dropped" in source and tests. (Bug #12828)
parent
16e30aaf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
include/my_alloc.h
include/my_alloc.h
+1
-1
mysql-test/t/rpl000009.test
mysql-test/t/rpl000009.test
+1
-1
mysql-test/t/system_mysql_db_fix.test
mysql-test/t/system_mysql_db_fix.test
+1
-1
sql/sql_table.cc
sql/sql_table.cc
+1
-1
tests/mysql_client_test.c
tests/mysql_client_test.c
+2
-2
No files found.
include/my_alloc.h
View file @
0dc444ec
...
...
@@ -43,7 +43,7 @@ typedef struct st_mem_root
unsigned
int
block_num
;
/* allocated blocks counter */
/*
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 drop
p
ed in 'used' list)
*/
unsigned
int
first_block_usage
;
...
...
mysql-test/t/rpl000009.test
View file @
0dc444ec
...
...
@@ -167,7 +167,7 @@ drop database mysqltest2;
save_master_pos
;
connection
slave
;
sync_with_master
;
# These ha
s to be droped on slave as
they are not replicated
# These ha
ve to be dropped on slave because
they are not replicated
drop
database
mysqltest2
;
drop
database
mysqltest3
;
...
...
mysql-test/t/system_mysql_db_fix.test
View file @
0dc444ec
...
...
@@ -81,7 +81,7 @@ DROP TABLE db, host, user, func, tables_priv, columns_priv, help_category, help_
--
enable_query_log
# check that we droped all system tables
# check that we drop
p
ed all system tables
show
tables
;
# End of 4.1 tests
sql/sql_table.cc
View file @
0dc444ec
...
...
@@ -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 drop
p
ed */
Alter_drop
*
drop
;
drop_it
.
rewind
();
while
((
drop
=
drop_it
++
))
...
...
tests/mysql_client_test.c
View file @
0dc444ec
...
...
@@ -9177,7 +9177,7 @@ static void test_create_drop()
rc
=
mysql_stmt_execute
(
stmt_drop
);
check_execute
(
stmt_drop
,
rc
);
if
(
!
opt_silent
)
fprintf
(
stdout
,
"droped %i
\n
"
,
i
);
fprintf
(
stdout
,
"drop
p
ed %i
\n
"
,
i
);
rc
=
mysql_stmt_execute
(
stmt_create_select
);
check_execute
(
stmt_create
,
rc
);
...
...
@@ -9192,7 +9192,7 @@ static void test_create_drop()
rc
=
mysql_stmt_execute
(
stmt_drop
);
check_execute
(
stmt_drop
,
rc
);
if
(
!
opt_silent
)
fprintf
(
stdout
,
"droped %i
\n
"
,
i
);
fprintf
(
stdout
,
"drop
p
ed %i
\n
"
,
i
);
}
mysql_stmt_close
(
stmt_create
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment