Could not delete deployment: timestamp ist außerhalb des gültigen Bereichs

Using camunda-bpm-tomcat-7.19.0.tar.gz
on Debian 11 (5.10.0-15-amd64 #1 SMP Debian 5.10.120-1)
(PostgreSQL) 15.3 (Debian 15.3-1.pgdg110+1)

template1=# show datestyle;
ISO, DMY

Camunda error:
Could not delete deployment: An exception occurred in the persistence layer. Please check the server logs for a detailed message and the entire exception stack trace.

catalina.out:
where ROOT_PROC_INST_ID_ = 'a1b85b17-28b1-11ee-a03e-a8a1599414c3' was aborted: FEHLER: timestamp ist außerhalb des gültigen Bereichs: »2466139-11-11 19:21:27.018+01«

Wobei: unbenanntes Portal Parameter $1 = '...' Call getNextException to see other errors in the batch.

at org.postgresql.jdbc.BatchResultHandler.handleError(BatchResultHandler.java:165)

... 89 more

Caused by: org.postgresql.util.PSQLException: FEHLER: timestamp ist außerhalb des gültigen Bereichs: »2466139-11-11 19:21:27.018+01«

Wobei: unbenanntes Portal Parameter $1 = '...'

Error happens when in cockpit I try to delete a running process.

I used actual odbc-driver postgresql-42.6.0.jar but also postgresql-42.3.7.jar

db config in server.xml:

<Resource name="jdbc/ProcessEngine"
          auth="Container"
          type="javax.sql.DataSource" 
          factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
          testOnBorrow="true"
          validationQuery="SELECT 1"
          uniqueResourceName="process-engine"
          driverClassName="org.postgresql.Driver" 
          url="jdbc:postgresql://localhost:5432/camunda"
          defaultTransactionIsolation="READ_COMMITTED"
          username="postgres"  
          password="secret"
          maxActive="20"
          minIdle="5"
          maxIdle="20" />