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
5ac71d44
Commit
5ac71d44
authored
Jan 16, 2017
by
Vicențiu Ciorbaru
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch '10.0-galera' into 10.1
parents
8e157687
5fc1ba60
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
8 deletions
+15
-8
mysql-test/suite/galera/r/galera_var_cluster_address.result
mysql-test/suite/galera/r/galera_var_cluster_address.result
+1
-0
mysql-test/suite/galera/suite.pm
mysql-test/suite/galera/suite.pm
+1
-0
mysql-test/suite/galera/t/galera_var_cluster_address.test
mysql-test/suite/galera/t/galera_var_cluster_address.test
+2
-0
scripts/mysqld_safe.sh
scripts/mysqld_safe.sh
+7
-8
sql/mysqld.cc
sql/mysqld.cc
+4
-0
No files found.
mysql-test/suite/galera/r/galera_var_cluster_address.result
View file @
5ac71d44
...
...
@@ -36,3 +36,4 @@ CALL mtr.add_suppression("failed to open gcomm backend connection: 110: failed t
CALL mtr.add_suppression("Failed to open backend connection: -110 \\(Connection timed out\\)");
CALL mtr.add_suppression("gcs connect failed: Connection timed out");
CALL mtr.add_suppression("WSREP: wsrep::connect\\(foo://\\) failed: 7");
# End of test
mysql-test/suite/galera/suite.pm
View file @
5ac71d44
...
...
@@ -67,6 +67,7 @@ push @::global_suppressions,
qr|WSREP: gcs_caused\(\) returned .*|
,
qr|WSREP: Protocol violation. JOIN message sender .* is not in state transfer \(SYNCED\). Message ignored.|
,
qr(WSREP: Action message in non-primary configuration from member [0-9]*)
,
qr(WSREP: discarding established .*)
,
);
...
...
mysql-test/suite/galera/t/galera_var_cluster_address.test
View file @
5ac71d44
...
...
@@ -9,6 +9,7 @@
--
let
$node_1
=
node_1
--
let
$node_2
=
node_2
--
source
include
/
auto_increment_offset_save
.
inc
#
# Set to invalid value
#
...
...
@@ -73,3 +74,4 @@ CALL mtr.add_suppression("WSREP: wsrep::connect\\(foo://\\) failed: 7");
--
source
include
/
auto_increment_offset_restore
.
inc
--
source
include
/
galera_end
.
inc
--
echo
# End of test
scripts/mysqld_safe.sh
View file @
5ac71d44
...
...
@@ -208,13 +208,6 @@ shell_quote_string() {
echo
"
$1
"
|
sed
-e
's,\([^a-zA-Z0-9/_.=-]\),\\\1,g'
}
check_executable_location
()
{
if
test
"
$unsafe_my_cnf
"
=
1
-a
"
$unrecognized_handling
"
!=
collect
;
then
log_error
"Cannot accept
$1
from a config file, when my.cnf is in the datadir"
exit
1
fi
}
wsrep_pick_url
()
{
[
$#
-eq
0
]
&&
return
0
...
...
@@ -298,6 +291,13 @@ wsrep_recover_position() {
return
$ret
}
check_executable_location
()
{
if
test
"
$unsafe_my_cnf
"
=
1
-a
"
$unrecognized_handling
"
!=
collect
;
then
log_error
"Cannot accept
$1
from a config file, when my.cnf is in the datadir"
exit
1
fi
}
parse_arguments
()
{
for
arg
do
val
=
`
echo
"
$arg
"
|
sed
-e
"s;--[^=]*=;;"
`
...
...
@@ -997,7 +997,6 @@ else
exec
2>&-
fi
# maximum number of wsrep restarts
max_wsrep_restarts
=
0
...
...
sql/mysqld.cc
View file @
5ac71d44
...
...
@@ -480,6 +480,10 @@ ulong opt_binlog_rows_event_max_size;
my_bool
opt_master_verify_checksum
=
0
;
my_bool
opt_slave_sql_verify_checksum
=
1
;
const
char
*
binlog_format_names
[]
=
{
"MIXED"
,
"STATEMENT"
,
"ROW"
,
NullS
};
#ifdef WITH_WSREP
const
char
*
wsrep_binlog_format_names
[]
=
{
"MIXED"
,
"STATEMENT"
,
"ROW"
,
"NONE"
,
NullS
};
#endif
/* WITH_WSREP */
volatile
sig_atomic_t
calling_initgroups
=
0
;
/**< Used in SIGSEGV handler. */
uint
mysqld_port
,
test_flags
,
select_errors
,
dropping_tables
,
ha_open_options
;
uint
mysqld_extra_port
;
...
...
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