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
6f25eadb
Commit
6f25eadb
authored
Apr 25, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-rpl
into pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-maint2
parents
425ceb2a
63389b15
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
8 deletions
+23
-8
mysql-test/lib/My/ConfigFactory.pm
mysql-test/lib/My/ConfigFactory.pm
+3
-3
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+9
-0
mysql-test/suite/rpl/t/disabled.def
mysql-test/suite/rpl/t/disabled.def
+3
-0
mysql-test/suite/rpl/t/rpl_000015-master.opt
mysql-test/suite/rpl/t/rpl_000015-master.opt
+0
-2
mysql-test/suite/rpl/t/rpl_000015.cnf
mysql-test/suite/rpl/t/rpl_000015.cnf
+2
-0
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
+0
-3
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
+6
-0
No files found.
mysql-test/lib/My/ConfigFactory.pm
View file @
6f25eadb
...
...
@@ -416,7 +416,7 @@ sub post_fix_mysql_cluster_section {
# Add a [mysl_cluster.<suffix>] section for each
# defined [cluster_config.<suffix>] section
foreach
my
$group
(
$config
->
like
('
cluster_config
.[0-9]
')
)
foreach
my
$group
(
$config
->
like
('
cluster_config
\
.
\
w*
')
)
{
my
@urls
;
# Generate ndb_connectstring for this cluster
...
...
@@ -497,7 +497,7 @@ sub run_generate_sections_from_cluster_config {
my
@options
=
('
ndb_mgmd
',
'
ndbd
',
'
mysqld
',
'
ndbapi
');
foreach
my
$group
(
$config
->
like
('
cluster_config
.[0-9]
')
)
{
foreach
my
$group
(
$config
->
like
('
cluster_config
\
.
\
w*
')
)
{
# Keep track of current index per process type
my
%
idxes
;
...
...
@@ -580,7 +580,7 @@ sub new_config {
$self
->
run_section_rules
(
$config
,
'
cluster_config
.[0-9]
',
'
cluster_config
\
.
\
w*
',
@cluster_config_rules
);
$self
->
run_generate_sections_from_cluster_config
(
$config
);
...
...
mysql-test/lib/mtr_cases.pm
View file @
6f25eadb
...
...
@@ -722,6 +722,15 @@ sub collect_one_test_case {
# ----------------------------------------------------------------------
process_opts_file
(
$tinfo
,
"
$testdir
/
$tname
-slave.opt
",
'
slave_opt
');
# ----------------------------------------------------------------------
# Check for test specific config file
# ----------------------------------------------------------------------
my
$test_cnf_file
=
"
$testdir
/
$tname
.cnf
";
if
(
-
f
$test_cnf_file
)
{
# Specifies the configuration file to use for this test
$tinfo
->
{'
template_path
'}
=
$test_cnf_file
;
}
# ----------------------------------------------------------------------
# master sh
# ----------------------------------------------------------------------
...
...
mysql-test/suite/rpl/t/disabled.def
View file @
6f25eadb
...
...
@@ -15,3 +15,6 @@ rpl_innodb_bug28430 : Bug #32247 2007-11-27 mats Test reports wrong value o
rpl_view : Bug#32654: rpl_view.test fails randomly
rpl_ndb_multi : Bug#30751: rpl_ndb_multi missing row in output
rpl_log_pos : Bug#8693 Test 'rpl_log_pos' fails sometimes
rpl_circular_for_4_hosts : Needs updated config
rpl_ndb_circular_2ch : Needs updated config
mysql-test/suite/rpl/t/rpl_000015-master.opt
deleted
100644 → 0
View file @
425ceb2a
--config-file-template=../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_000015.cnf
0 → 100644
View file @
6f25eadb
!include ../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
deleted
100644 → 0
View file @
425ceb2a
-O max_binlog_size=4096
--config-file-template=../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
0 → 100644
View file @
6f25eadb
!include ../rpl_1slave_base.cnf
[mysqld.1]
max_binlog_size=4096
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