pefernan opened a new issue, #1607: URL: https://github.com/apache/incubator-kie-issues/issues/1607
When attempting to create a "hiring" Process Instance from the swagger-ui on the Compact Architecture example with a postgreSQL database, there's the following error in console: ``` org.postgresql.util.PSQLException: ERROR: column "recipient" is of type jsonb but expression is of type bytea: ``` Both Data Index and Jobs Service JPA storage use the same Flyway scripts as their PostgreSQL versions to initialize Postgresql DataBase. Some of the tables defined in those scripts use `jsonb` columns to store objects (process variables, task inputs/outputs,...) and the converters use in those JPA entities cannot produce the right value for those columns. We may have to adjust the converters for so both JPA modules can work for PostgreSQL and H2 databases. -- 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]
