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
25094f33
Commit
25094f33
authored
May 26, 2024
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
after merge fix
parent
78325a25
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
mysql-test/suite/galera/r/MDEV-25731.result
mysql-test/suite/galera/r/MDEV-25731.result
+0
-10
mysql-test/suite/galera/t/MDEV-25731.test
mysql-test/suite/galera/t/MDEV-25731.test
+0
-2
No files found.
mysql-test/suite/galera/r/MDEV-25731.result
View file @
25094f33
connection node_2;
connection node_1;
connection node_1;
SET GLOBAL wsrep_load_data_splitting=ON;
Warnings:
Warning 1287 '@@wsrep_load_data_splitting' is deprecated and will be removed in a future release
SET GLOBAL wsrep_mode=REPLICATE_MYISAM;
CREATE TABLE t1 (c1 int) ENGINE=MYISAM;
LOAD DATA INFILE '../../std_data/mdev-25731.dat' IGNORE INTO TABLE t1 LINES TERMINATED BY '\n';
Warnings:
Warning 1235 wsrep_load_data_splitting for other than InnoDB tables
SELECT COUNT(*) AS EXPECT_6 FROM t1;
EXPECT_6
6
...
...
@@ -20,8 +15,6 @@ connection node_1;
ALTER TABLE t1 ENGINE=Aria;
SET GLOBAL wsrep_mode=REPLICATE_ARIA;
LOAD DATA INFILE '../../std_data/mdev-25731.dat' IGNORE INTO TABLE t1 LINES TERMINATED BY '\n';
Warnings:
Warning 1235 wsrep_load_data_splitting for other than InnoDB tables
SELECT COUNT(*) AS EXPECT_12 FROM t1;
EXPECT_12
12
...
...
@@ -41,7 +34,4 @@ EXPECT_18
18
connection node_1;
DROP TABLE t1;
SET GLOBAL wsrep_load_data_splitting=OFF;
Warnings:
Warning 1287 '@@wsrep_load_data_splitting' is deprecated and will be removed in a future release
SET GLOBAL wsrep_mode=DEFAULT;
mysql-test/suite/galera/t/MDEV-25731.test
View file @
25094f33
...
...
@@ -2,7 +2,6 @@
--
source
include
/
have_aria
.
inc
--
connection
node_1
SET
GLOBAL
wsrep_load_data_splitting
=
ON
;
SET
GLOBAL
wsrep_mode
=
REPLICATE_MYISAM
;
CREATE
TABLE
t1
(
c1
int
)
ENGINE
=
MYISAM
;
LOAD
DATA
INFILE
'../../std_data/mdev-25731.dat'
IGNORE
INTO
TABLE
t1
LINES
TERMINATED
BY
'\n'
;
...
...
@@ -30,5 +29,4 @@ SELECT COUNT(*) AS EXPECT_18 FROM t1;
--
connection
node_1
DROP
TABLE
t1
;
SET
GLOBAL
wsrep_load_data_splitting
=
OFF
;
SET
GLOBAL
wsrep_mode
=
DEFAULT
;
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