You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A sequence is an object that generates a sequence of numeric values, as specified by the CREATE SEQUENCE statement. Sequences are an alternative to AUTO_INCREMENT when you want more control over how sequence numbers are generated.
Sequences can be used as alternative to table storage, but without locks when multiple threads are accessing id generation.
The text was updated successfully, but these errors were encountered:
slavb18
pushed a commit
to slavb18/eclipselink
that referenced
this issue
Nov 19, 2020
MySQLPlatform lacks support of mariadb sequences introduced in https://mariadb.com/kb/en/sequences/
Duplicating Bug 545248 - Support for mariadb 10.3 sequences https://bugs.eclipse.org/bugs/show_bug.cgi?id=545248
CREATE SEQUENCE was introduced in MariaDB 10.3.
https://mariadb.com/kb/en/sequences/
A sequence is an object that generates a sequence of numeric values, as specified by the CREATE SEQUENCE statement. Sequences are an alternative to AUTO_INCREMENT when you want more control over how sequence numbers are generated.
Sequences can be used as alternative to table storage, but without locks when multiple threads are accessing id generation.
The text was updated successfully, but these errors were encountered: