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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
529b6dff
Commit
529b6dff
authored
Jun 15, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small cleanup
parent
35f566db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
26 deletions
+21
-26
sql/handler.cc
sql/handler.cc
+1
-2
sql/sql_table.cc
sql/sql_table.cc
+20
-24
No files found.
sql/handler.cc
View file @
529b6dff
...
...
@@ -5011,8 +5011,7 @@ static my_bool delete_table_force(THD *thd, plugin_ref plugin, void *arg)
!
(
hton
->
flags
&
HTON_AUTOMATIC_DELETE_TABLE
))
{
int
error
;
error
=
ha_delete_table
(
thd
,
hton
,
param
->
path
,
param
->
db
,
param
->
alias
,
0
);
error
=
ha_delete_table
(
thd
,
hton
,
param
->
path
,
param
->
db
,
param
->
alias
,
0
);
if
(
error
>
0
&&
!
non_existing_table_error
(
error
))
param
->
error
=
error
;
if
(
error
==
0
)
...
...
sql/sql_table.cc
View file @
529b6dff
...
...
@@ -2236,10 +2236,9 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
bool
dont_free_locks
)
{
TABLE_LIST
*
table
;
char
path
[
FN_REFLEN
+
1
]
,
unknown_tables_buff
[
160
]
;
char
path
[
FN_REFLEN
+
1
];
LEX_CSTRING
alias
=
null_clex_str
;
String
unknown_tables
(
unknown_tables_buff
,
sizeof
(
unknown_tables_buff
)
-
1
,
system_charset_info
);
StringBuffer
<
160
>
unknown_tables
(
system_charset_info
);
uint
not_found_errors
=
0
;
int
error
=
0
;
int
non_temp_tables_count
=
0
;
...
...
@@ -2311,14 +2310,15 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
bool
table_creation_was_logged
=
0
;
bool
local_non_tmp_error
=
0
,
frm_exists
=
0
,
wrong_drop_sequence
=
0
;
bool
table_dropped
=
0
;
LEX_CSTRING
db
=
table
->
db
;
const
LEX_CSTRING
db
=
table
->
db
;
const
LEX_CSTRING
table_name
=
table
->
table_name
;
handlerton
*
table_type
=
0
;
size_t
path_length
=
0
;
char
*
path_end
=
0
;
error
=
0
;
DBUG_PRINT
(
"table"
,
(
"table_l: '%s'.'%s' table: %p s: %p"
,
table
->
db
.
str
,
table
->
table_name
.
str
,
table
->
table
,
db
.
str
,
table_name
.
str
,
table
->
table
,
table
->
table
?
table
->
table
->
s
:
NULL
));
/*
...
...
@@ -2381,7 +2381,7 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
append_identifier
(
thd
,
built_ptr_query
,
&
db
);
built_ptr_query
->
append
(
"."
);
}
append_identifier
(
thd
,
built_ptr_query
,
&
table
->
table
_name
);
append_identifier
(
thd
,
built_ptr_query
,
&
table_name
);
built_ptr_query
->
append
(
","
);
}
/*
...
...
@@ -2396,11 +2396,10 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
{
non_temp_tables_count
++
;
DBUG_ASSERT
(
thd
->
mdl_context
.
is_lock_owner
(
MDL_key
::
TABLE
,
table
->
db
.
str
,
table
->
table_name
.
str
,
MDL_SHARED
));
DBUG_ASSERT
(
thd
->
mdl_context
.
is_lock_owner
(
MDL_key
::
TABLE
,
db
.
str
,
table_name
.
str
,
MDL_SHARED
));
alias
=
(
lower_case_table_names
==
2
)
?
table
->
alias
:
table
->
table
_name
;
alias
=
(
lower_case_table_names
==
2
)
?
table
->
alias
:
table_name
;
/* remove .frm file and engine files */
path_length
=
build_table_filename
(
path
,
sizeof
(
path
)
-
1
,
db
.
str
,
alias
.
str
,
reg_ext
,
0
);
...
...
@@ -2466,12 +2465,11 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
table
->
table
=
0
;
}
else
tdc_remove_table
(
thd
,
table
->
db
.
str
,
table
->
table_name
.
str
);
tdc_remove_table
(
thd
,
db
.
str
,
table_name
.
str
);
/* Check that we have an exclusive lock on the table to be dropped. */
DBUG_ASSERT
(
thd
->
mdl_context
.
is_lock_owner
(
MDL_key
::
TABLE
,
table
->
db
.
str
,
table
->
table_name
.
str
,
MDL_EXCLUSIVE
));
DBUG_ASSERT
(
thd
->
mdl_context
.
is_lock_owner
(
MDL_key
::
TABLE
,
db
.
str
,
table_name
.
str
,
MDL_EXCLUSIVE
));
// Remove extension for delete
*
path_end
=
'\0'
;
...
...
@@ -2482,7 +2480,7 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
thd
->
replication_flags
=
0
;
error
=
ha_delete_table
(
thd
,
table_type
,
path
,
&
db
,
&
table
->
table
_name
,
!
dont_log_query
);
&
table_name
,
!
dont_log_query
);
if
(
!
error
)
table_dropped
=
1
;
...
...
@@ -2557,7 +2555,7 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
/* Remove extension for delete */
*
path_end
=
'\0'
;
ferror
=
ha_delete_table_force
(
thd
,
path
,
&
db
,
&
table
->
table
_name
);
ferror
=
ha_delete_table_force
(
thd
,
path
,
&
db
,
&
table_name
);
if
(
!
ferror
)
{
/* Table existed and was deleted */
...
...
@@ -2584,22 +2582,21 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
if
(
likely
(
!
error
)
||
non_existing_table_error
(
error
))
{
if
(
Table_triggers_list
::
drop_all_triggers
(
thd
,
&
db
,
&
table
->
table
_name
,
if
(
Table_triggers_list
::
drop_all_triggers
(
thd
,
&
db
,
&
table_name
,
MYF
(
MY_WME
|
MY_IGNORE_ENOENT
)))
error
=
error
?
error
:
-
1
;
}
if
(
error
)
{
char
buff
[
FN_REFLEN
];
String
tbl_name
(
buff
,
sizeof
(
buff
),
system_charset_info
);
StringBuffer
<
FN_REFLEN
>
tbl_name
(
system_charset_info
);
uint
is_note
=
(
if_exists
&&
(
was_view
||
wrong_drop_sequence
)
?
ME_NOTE
:
0
);
tbl_name
.
length
(
0
);
tbl_name
.
append
(
&
db
);
tbl_name
.
append
(
'.'
);
tbl_name
.
append
(
&
table
->
table
_name
);
tbl_name
.
append
(
&
table_name
);
if
(
!
non_existing_table_error
(
error
)
||
is_note
)
{
...
...
@@ -2640,9 +2637,8 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
if
(
!
error
&&
table_dropped
)
{
PSI_CALL_drop_table_share
(
temporary_table_was_dropped
,
table
->
db
.
str
,
(
uint
)
table
->
db
.
length
,
table
->
table_name
.
str
,
(
uint
)
table
->
table_name
.
length
);
db
.
str
,
(
uint
)
db
.
length
,
table_name
.
str
,
(
uint
)
table_name
.
length
);
mysql_audit_drop_table
(
thd
,
table
);
}
...
...
@@ -2660,7 +2656,7 @@ int mysql_rm_table_no_locks(THD *thd, TABLE_LIST *tables, bool if_exists,
normal_tables
.
append
(
"."
);
}
append_identifier
(
thd
,
&
normal_tables
,
&
table
->
table
_name
);
append_identifier
(
thd
,
&
normal_tables
,
&
table_name
);
normal_tables
.
append
(
","
);
}
DBUG_PRINT
(
"table"
,
(
"table: %p s: %p"
,
table
->
table
,
...
...
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