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
ea901404
Commit
ea901404
authored
Sep 19, 2006
by
mikael/pappa@dator5.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Close the DDL log from 2 places => put into separate method
Needed to close ddl log in recovery before deleting it
parent
6c07d55a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
5 deletions
+22
-5
sql/sql_table.cc
sql/sql_table.cc
+22
-5
No files found.
sql/sql_table.cc
View file @
ea901404
...
...
@@ -1132,6 +1132,26 @@ bool execute_ddl_log_entry(THD *thd, uint first_entry)
}
/*
Close the ddl log
SYNOPSIS
close_ddl_log()
RETURN VALUES
NONE
*/
static
void
close_ddl_log
()
{
DBUG_ENTER
(
"close_ddl_log"
);
if
(
global_ddl_log
.
file_id
>=
0
)
{
VOID
(
my_close
(
global_ddl_log
.
file_id
,
MYF
(
MY_WME
)));
global_ddl_log
.
file_id
=
(
File
)
-
1
;
}
DBUG_VOID_RETURN
;
}
/*
Execute the ddl log at recovery of MySQL Server
SYNOPSIS
...
...
@@ -1183,6 +1203,7 @@ void execute_ddl_log_recovery()
}
}
}
close_ddl_log
();
create_ddl_log_file_name
(
file_name
);
VOID
(
my_delete
(
file_name
,
MYF
(
0
)));
global_ddl_log
.
recovery_phase
=
FALSE
;
...
...
@@ -1220,11 +1241,7 @@ void release_ddl_log()
my_free
((
char
*
)
free_list
,
MYF
(
0
));
free_list
=
tmp
;
}
if
(
global_ddl_log
.
file_id
>=
0
)
{
VOID
(
my_close
(
global_ddl_log
.
file_id
,
MYF
(
MY_WME
)));
global_ddl_log
.
file_id
=
(
File
)
-
1
;
}
close_ddl_log
();
global_ddl_log
.
inited
=
0
;
pthread_mutex_unlock
(
&
LOCK_gdl
);
VOID
(
pthread_mutex_destroy
(
&
LOCK_gdl
));
...
...
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