Ruud Welling
Ruud Welling
You can copy the `jdbc-journal` section from https://github.com/dnvriend/akka-persistence-jdbc/blob/master/src/main/resources/reference.conf and you could rename this to e.g. `mysql-jdbc-journal`. You can then load the plugin based on the `mysql-jdbc-journal`. This probably means that...
CSV: FAIL_ON_MISSING_COLUMNS does not work as expected when combined with withColumnReordering(true)
I ran into this issue today. In my case `reorderColumns` was false. In this case no validation is done, and the parsing only fails if there actually is data. Which...
@malkaviano what version of mysql-connector-java are you using? I may have reproduced your issue as part of #2024
This is likely caused by https://bugs.mysql.com/bug.php?id=93444
Workaround for the MySQL issue linked above is to configure the `serverTimezone` parameter. See https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-reference-configuration-properties.html
@malkaviano could you verify that the issue no longer occurs if the `serverTimezone` is configured in the jdbc url?
Seems similar to #2090
I believe this issue is fixed by #2035, which is on hold due to lack of feedback
If sample id is an AutoInc column, then you need to use `sampes.forceInsert(newSample)` to to ensure that the `newSampleId` is actually used
I am currently investigating a solution and I would like to propose a potential solution - Slick will provide `OffsetTimeJdbcType` which has sql type `TIME_WITH_TIMEZONE` and maps it to the...