marcopaggioro opened a new pull request, #366: URL: https://github.com/apache/pekko-persistence-jdbc/pull/366
#174 This PR allows the use of Durable State with the MySQL DBMS. Unfortunately, MySQL does not support `SEQUENCE`s, which are necessary to manage the entire current flow. This flow allows for various validations. As a workaround, I created a table with two fields: an auto-increment and a dummy field. Running a `REPLACE` query on the `dummy` column and a subsequent `SELECT LAST_INSERT_ID()` in the same transaction ensures thread-safe access to a usable incremental number. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
