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
645f7841
Commit
645f7841
authored
Sep 05, 2009
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
followup fixes after merge to -trunk
parent
29a14204
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
1 deletion
+14
-1
mysql-test/collections/default.experimental
mysql-test/collections/default.experimental
+3
-1
mysql-test/r/bug46080.result
mysql-test/r/bug46080.result
+2
-0
mysql-test/suite/rpl/r/rpl_get_master_version_and_clock.result
...-test/suite/rpl/r/rpl_get_master_version_and_clock.result
+2
-0
mysql-test/suite/rpl/t/rpl_get_master_version_and_clock.test
mysql-test/suite/rpl/t/rpl_get_master_version_and_clock.test
+4
-0
mysql-test/t/bug46080.test
mysql-test/t/bug46080.test
+3
-0
No files found.
mysql-test/collections/default.experimental
View file @
645f7841
...
...
@@ -4,5 +4,7 @@ main.ctype_gbk_binlog @solaris # Bug#46010: main.ctype_gbk_binlog fail
rpl.rpl_row_create_table* # Bug#45576: rpl_row_create_table fails on PB2
rpl_ndb.rpl_ndb_log # Bug#38998
rpl.rpl_innodb_bug28430* @solaris # Bug#46029
main.plugin_load @solaris # Bug
#42144
main.plugin_load @solaris # Bug#42144
rpl.rpl_get_master_version_and_clock* # Bug#46931 2009-08-26 alik rpl.rpl_get_master_version_and_clock fails on hpux11.31
main.plugin* @solaris # Bug#47146 Linking problem with example plugin when dtrace enabled
rpl.rpl_plugin_load* @solaris # Bug#47146
mysql-test/r/bug46080.result
View file @
645f7841
...
...
@@ -2,6 +2,8 @@
# Bug #46080: group_concat(... order by) crashes server when
# sort_buffer_size cannot allocate
#
call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
call mtr.add_suppression("needed .* byte .*k., memory in use: .* bytes .*k");
CREATE TABLE t1(a CHAR(255));
INSERT INTO t1 VALUES ('a');
SET @@SESSION.sort_buffer_size=5*16*1000000;
...
...
mysql-test/suite/rpl/r/rpl_get_master_version_and_clock.result
View file @
645f7841
...
...
@@ -4,6 +4,8 @@ reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
call mtr.add_suppression("Slave I/O: Get master clock failed with error: Lost connection to MySQL server at 'reading initial communication packet'");
call mtr.add_suppression("Slave I/O: Master command COM_REGISTER_SLAVE failed: failed registering on master, reconnecting to try again");
SELECT IS_FREE_LOCK("debug_lock.before_get_UNIX_TIMESTAMP");
IS_FREE_LOCK("debug_lock.before_get_UNIX_TIMESTAMP")
1
...
...
mysql-test/suite/rpl/t/rpl_get_master_version_and_clock.test
View file @
645f7841
...
...
@@ -16,6 +16,10 @@
source
include
/
master
-
slave
.
inc
;
source
include
/
have_debug
.
inc
;
call
mtr
.
add_suppression
(
"Slave I/O: Get master clock failed with error: Lost connection to MySQL server at 'reading initial communication packet'"
);
call
mtr
.
add_suppression
(
"Slave I/O: Master command COM_REGISTER_SLAVE failed: failed registering on master, reconnecting to try again"
);
#Test case 1: Try to get the value of the UNIX_TIMESTAMP from master under network disconnection
connection
slave
;
let
$debug_saved
=
`select @@global.debug`
;
...
...
mysql-test/t/bug46080.test
View file @
645f7841
...
...
@@ -3,6 +3,9 @@
--
echo
# sort_buffer_size cannot allocate
--
echo
#
call
mtr
.
add_suppression
(
"Out of memory at line .*, 'my_alloc.c'"
);
call
mtr
.
add_suppression
(
"needed .* byte .*k., memory in use: .* bytes .*k"
);
CREATE
TABLE
t1
(
a
CHAR
(
255
));
INSERT
INTO
t1
VALUES
(
'a'
);
...
...
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