Skip to:
The meaning of create sequence without an explicit cache configuration apparently means something like cache 50 on MariaDB. This is not supported on a Galera MariaDB cluster though. We will have to emit the nocache option for sequences for MariaDB.
create sequence
cache 50
nocache
The meaning of
create sequence
without an explicit cache configuration apparently means something likecache 50
on MariaDB. This is not supported on a Galera MariaDB cluster though. We will have to emit thenocache
option for sequences for MariaDB.