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
9c7add9c
Commit
9c7add9c
authored
Jan 27, 2006
by
joerg@debian.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into debian.(none):/M51/mysql-5.1
parents
07b3d2e4
01824dd7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
3 deletions
+28
-3
mysql-test/r/partition_mgm_err.result
mysql-test/r/partition_mgm_err.result
+2
-0
mysql-test/t/partition_mgm_err.test
mysql-test/t/partition_mgm_err.test
+6
-0
sql/log.cc
sql/log.cc
+12
-1
sql/log.h
sql/log.h
+4
-1
sql/mysqld.cc
sql/mysqld.cc
+4
-1
No files found.
mysql-test/r/partition_mgm_err.result
View file @
9c7add9c
...
...
@@ -140,3 +140,5 @@ t1 CREATE TABLE `t1` (
`a` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY KEY (a) PARTITIONS 2
DROP TABLE t1;
CREATE TABLE t1 (a INT) PARTITION BY HASH(a);
ALTER TABLE t1 ADD PARTITION PARTITIONS 4;
mysql-test/t/partition_mgm_err.test
View file @
9c7add9c
...
...
@@ -210,3 +210,9 @@ SHOW CREATE TABLE t1;
ALTER
TABLE
t1
PARTITION
BY
KEY
(
a
)
PARTITIONS
2
;
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
#
#BUG 15820 create table with 1 partition, doing ALTER TABLE ADD PARTITION fails
#
CREATE
TABLE
t1
(
a
INT
)
PARTITION
BY
HASH
(
a
);
ALTER
TABLE
t1
ADD
PARTITION
PARTITIONS
4
;
sql/log.cc
View file @
9c7add9c
...
...
@@ -561,17 +561,28 @@ bool LOGGER::error_log_print(enum loglevel level, const char *format,
}
void
LOGGER
::
cleanup
()
void
LOGGER
::
cleanup
_base
()
{
DBUG_ASSERT
(
inited
==
1
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_logger
);
if
(
table_log_handler
)
{
table_log_handler
->
cleanup
();
delete
table_log_handler
;
}
if
(
file_log_handler
)
file_log_handler
->
cleanup
();
}
void
LOGGER
::
cleanup_end
()
{
DBUG_ASSERT
(
inited
==
1
);
if
(
file_log_handler
)
delete
file_log_handler
;
}
void
LOGGER
::
close_log_table
(
uint
log_type
,
bool
lock_in_use
)
{
table_log_handler
->
close_log_table
(
log_type
,
lock_in_use
);
...
...
sql/log.h
View file @
9c7add9c
...
...
@@ -479,7 +479,10 @@ public:
{
return
(
THD
*
)
table_log_handler
->
slow_log_thd
;
}
void
cleanup
();
/* Perform basic logger cleanup. this will leave e.g. error log open. */
void
cleanup_base
();
/* Free memory. Nothing could be logged after this function is called */
void
cleanup_end
();
bool
error_log_print
(
enum
loglevel
level
,
const
char
*
format
,
va_list
args
);
bool
slow_log_print
(
THD
*
thd
,
const
char
*
query
,
uint
query_length
,
...
...
sql/mysqld.cc
View file @
9c7add9c
...
...
@@ -1144,7 +1144,8 @@ void clean_up(bool print_message)
if
(
cleanup_done
++
)
return
;
/* purecov: inspected */
logger
.
cleanup
();
logger
.
cleanup_base
();
/*
make sure that handlers finish up
what they have that is dependent on the binlog
...
...
@@ -1237,6 +1238,8 @@ void clean_up(bool print_message)
/* do the broadcast inside the lock to ensure that my_end() is not called */
(
void
)
pthread_cond_broadcast
(
&
COND_thread_count
);
(
void
)
pthread_mutex_unlock
(
&
LOCK_thread_count
);
logger
.
cleanup_end
();
/*
The following lines may never be executed as the main thread may have
killed us
...
...
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