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
b42e80e3
Commit
b42e80e3
authored
Aug 28, 2007
by
tsmith@sita.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes
parent
a009144d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
11 deletions
+5
-11
sql/ha_partition.cc
sql/ha_partition.cc
+0
-7
sql/mysqld.cc
sql/mysqld.cc
+5
-4
No files found.
sql/ha_partition.cc
View file @
b42e80e3
...
...
@@ -5601,13 +5601,6 @@ int ha_partition::indexes_are_disabled(void)
}
void
ha_partition
::
column_bitmaps_signal
()
{
handler
::
column_bitmaps_signal
();
bitmap_union
(
table
->
read_set
,
&
m_part_info
->
full_part_field_set
);
}
/****************************************************************************
MODULE Partition Share
****************************************************************************/
...
...
sql/mysqld.cc
View file @
b42e80e3
...
...
@@ -746,14 +746,16 @@ static void close_connections(void)
(
void
)
pthread_mutex_lock
(
&
LOCK_manager
);
if
(
manager_thread_in_use
)
{
DBUG_PRINT
(
"quit"
,(
"killing manager thread: 0x%lx"
,
manager_thread
));
DBUG_PRINT
(
"quit"
,
(
"killing manager thread: 0x%lx"
,
(
ulong
)
manager_thread
));
(
void
)
pthread_cond_signal
(
&
COND_manager
);
}
(
void
)
pthread_mutex_unlock
(
&
LOCK_manager
);
/* kill connection thread */
#if !defined(__WIN__) && !defined(__NETWARE__)
DBUG_PRINT
(
"quit"
,(
"waiting for select thread: 0x%lx"
,
select_thread
));
DBUG_PRINT
(
"quit"
,
(
"waiting for select thread: 0x%lx"
,
(
ulong
)
select_thread
));
(
void
)
pthread_mutex_lock
(
&
LOCK_thread_count
);
while
(
select_thread_in_use
)
...
...
@@ -5087,8 +5089,7 @@ enum options_mysqld
OPT_SECURE_FILE_PRIV
,
OPT_MIN_EXAMINED_ROW_LIMIT
,
OPT_LOG_SLOW_SLAVE_STATEMENTS
,
OPT_OLD_MODE
,
OPT_KEEP_FILES_ON_CREATE
OPT_OLD_MODE
};
...
...
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