MariaDB MariaDB Galera Cluster 10 is now stable (GA)

C

Colin Charles

Guest
A much awaited release from the MariaDB project is now stable (GA) – MariaDB Galera Cluster 10.0.12. This is a complete merge of MariaDB 10.0.12 and Galera Cluster, with additional features and bug fixes. This gives you the entire power of Galera Cluster as well as the benefits of all the MariaDB 10 features.

This is the fourth release in the 10.0 Galera Cluster series, and for more changes, please review the changelog and release notes. What are you waiting for, download it now!

Update: In this release there is known regression on certain foreign key use cases using multi-part multi-byte foreign keys. Insert to child table causes server crash. For example the following can cause a server crash:
create table p(v varchar(10), i int, primary key(v,i)) engine=innodb character set = utf8;
create table c(k int primary key, v varchar(10), i int, foreign key(v,i) references p(v,i)) engine=innodb character set = utf8;
insert into p values ('a»a',1); insert into c values (1, 'a»a',1);

Continue reading...
 
Back
Top