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
34564587
Commit
34564587
authored
Feb 06, 2022
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.7' into 10.8
parents
5ded88eb
cb1316b8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
17 deletions
+5
-17
mysql-test/suite/galera/r/galera_myisam_transactions.result
mysql-test/suite/galera/r/galera_myisam_transactions.result
+2
-6
mysql-test/suite/galera/t/galera_myisam_transactions.test
mysql-test/suite/galera/t/galera_myisam_transactions.test
+2
-2
mysql-test/suite/galera_3nodes/r/GCF-363.result
mysql-test/suite/galera_3nodes/r/GCF-363.result
+0
-5
mysql-test/suite/galera_3nodes/t/GCF-363.test
mysql-test/suite/galera_3nodes/t/GCF-363.test
+0
-3
storage/columnstore/columnstore
storage/columnstore/columnstore
+1
-1
No files found.
mysql-test/suite/galera/r/galera_myisam_transactions.result
View file @
34564587
...
...
@@ -38,9 +38,7 @@ COUNT(*) = 0
1
DROP TABLE t1, t2, t3;
SET SESSION lock_wait_timeout=2;
SET GLOBAL wsrep_replicate_myisam= ON;
Warnings:
Warning 1287 '@@wsrep_replicate_myisam' is deprecated and will be removed in a future release. Please use '@@wsrep_mode=REPLICATE_MYISAM' instead
SET GLOBAL wsrep_mode = REPLICATE_MYISAM;
CREATE TEMPORARY TABLE t1 (i INT, PRIMARY KEY pk (i)) ENGINE=MyISAM;
Warnings:
Warning 1280 Name 'pk' ignored for PRIMARY key.
...
...
@@ -49,6 +47,4 @@ INSERT INTO t1 VALUES(4);
DEALLOCATE PREPARE stmt;
COMMIT;
DROP TABLE t1;
SET GLOBAL wsrep_replicate_myisam=OFF;
Warnings:
Warning 1287 '@@wsrep_replicate_myisam' is deprecated and will be removed in a future release. Please use '@@wsrep_mode=REPLICATE_MYISAM' instead
SET GLOBAL wsrep_mode = DEFAULT;
mysql-test/suite/galera/t/galera_myisam_transactions.test
View file @
34564587
...
...
@@ -39,11 +39,11 @@ DROP TABLE t1, t2, t3;
# MDEV-25201 : Assertion `thd->wsrep_trx_meta.gtid.seqno == (-1)' failed in int wsrep_to_isolation_begin(THD*, const char*, const char*, const TABLE_LIST*, Alter_info*)
#
SET
SESSION
lock_wait_timeout
=
2
;
SET
GLOBAL
wsrep_
replicate_myisam
=
ON
;
SET
GLOBAL
wsrep_
mode
=
REPLICATE_MYISAM
;
CREATE
TEMPORARY
TABLE
t1
(
i
INT
,
PRIMARY
KEY
pk
(
i
))
ENGINE
=
MyISAM
;
PREPARE
stmt
FROM
"INSERT INTO t1 (id) SELECT * FROM (SELECT 4 AS i) AS y"
;
INSERT
INTO
t1
VALUES
(
4
);
DEALLOCATE
PREPARE
stmt
;
COMMIT
;
DROP
TABLE
t1
;
SET
GLOBAL
wsrep_
replicate_myisam
=
OFF
;
SET
GLOBAL
wsrep_
mode
=
DEFAULT
;
mysql-test/suite/galera_3nodes/r/GCF-363.result
View file @
34564587
...
...
@@ -6,11 +6,6 @@ connection node_2;
connection node_3;
connection node_1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
connection node_1;
connection node_1;
connection node_2;
connection node_1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
SET GLOBAL wsrep_on=OFF;
INSERT INTO t1 VALUES (1, 'a');
SET GLOBAL wsrep_on=ON;
...
...
mysql-test/suite/galera_3nodes/t/GCF-363.test
View file @
34564587
...
...
@@ -16,9 +16,6 @@
--
connection
node_1
CREATE
TABLE
t1
(
f1
INTEGER
PRIMARY
KEY
,
f2
CHAR
(
1
))
ENGINE
=
InnoDB
;
--
connection
node_1
CREATE
TABLE
t1
(
f1
INTEGER
PRIMARY
KEY
,
f2
CHAR
(
1
))
ENGINE
=
InnoDB
;
SET
GLOBAL
wsrep_on
=
OFF
;
INSERT
INTO
t1
VALUES
(
1
,
'a'
);
SET
GLOBAL
wsrep_on
=
ON
;
...
...
columnstore
@
a0877d66
Subproject commit
f6dcc41519bcea7cecb103fd280c3c2812e1e2bc
Subproject commit
a0877d66ed97840658831a53c253a485e9ca5b77
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