marcopaggioro opened a new pull request, #363: URL: https://github.com/apache/pekko-persistence-jdbc/pull/363
- `VARCHAR tag` in the Postgres schema of the `durable_state` table :arrow_right: `VARCHAR` without a fixed length is not available in MySQL, but it could become `VARCHAR(255)`, as specified in the Oracle and SQLServer schema. - `state_payload BYTEA` in the Postgres schema of the `durable_state` table :arrow_right: `BYTEA` is not available in MySQL, but it could become `LONGBLOB`. - `global_offset BIGSERIAL` in the Postgres schema of the `durable_state` table :arrow_right: `BIGSERIAL` (used as` BIGINT` with auto-increment) is not available in MySQL, but it could become `BIGINT AUTO_INCREMENT` and add a `UNIQUE KEY` to `global_offset`. - Bypass `SequenceNextValUpdater` only for MySQL and use `REPLACE` query -- 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]
