The Sequences section mentions that sequences are more flexible than AUTO_INCREMENT and shows a basic example.
I think you should include the complete syntax of CREATE SEQUENCE and mention the other DDLs.
Also, I think you should write in bold that sequences have an ENGINE clause, and in a Galera cluster that should be ENGINE=InnoDB.
I'd probably also mention that, thanks to the clauses of CREATE SEQUENCE, one can have unique id's over a set of tables whose PK use the same sequence.
The Sequences section mentions that sequences are more flexible than
AUTO_INCREMENTand shows a basic example.I think you should include the complete syntax of
CREATE SEQUENCEand mention the other DDLs.Also, I think you should write in bold that sequences have an
ENGINEclause, and in a Galera cluster that should beENGINE=InnoDB.I'd probably also mention that, thanks to the clauses of
CREATE SEQUENCE, one can have unique id's over a set of tables whose PK use the same sequence.