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
8035c986
Commit
8035c986
authored
Aug 07, 2014
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-6490: Post-fix for the failing test.
parent
42b6c07e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
mysql-test/r/galera_sst_mode.result
mysql-test/r/galera_sst_mode.result
+0
-8
mysql-test/t/galera_sst_mode.test
mysql-test/t/galera_sst_mode.test
+0
-6
No files found.
mysql-test/r/galera_sst_mode.result
View file @
8035c986
...
...
@@ -9,10 +9,6 @@ USE bug6490;
CREATE TABLE t1(c1 INT);
INSERT INTO t1 values (1);
INSERT INTO t1 values (2);
# @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
@@global.gtid_binlog_state
0-1-4
# Save the current gtid_binlog_state.
# Take a dump of bug6490 database
DROP TABLE t1;
...
...
@@ -22,10 +18,6 @@ SELECT * from t1;
c1
1
2
# @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
@@global.gtid_binlog_state
0-1-4
# Compare the two gtid_binlog_state's
# Cleanup
DROP DATABASE bug6490;
...
...
mysql-test/t/galera_sst_mode.test
View file @
8035c986
...
...
@@ -16,9 +16,6 @@ CREATE TABLE t1(c1 INT);
INSERT
INTO
t1
values
(
1
);
INSERT
INTO
t1
values
(
2
);
--
echo
# @@global.gtid_binlog_state - after
SELECT
@@
global
.
gtid_binlog_state
;
--
echo
# Save the current gtid_binlog_state.
--
let
$before
=
`SELECT @@global.gtid_binlog_state`
...
...
@@ -32,9 +29,6 @@ RESET MASTER;
SELECT
*
from
t1
;
--
echo
# @@global.gtid_binlog_state - after
SELECT
@@
global
.
gtid_binlog_state
;
--
echo
# Compare the two gtid_binlog_state's
--
let
$after
=
`SELECT @@global.gtid_binlog_state`
if
(
`SELECT STRCMP($before, $after)`
)
...
...
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