Jmix Studio reports that database will be created automatically but does not create it

Jmix version: 2.1.0
Jmix Studio plugin version: 2.1.0-232
IntelliJ version: IntelliJ IDEA 2023.2.5 (Community Edition)

Database will be created

But run application finished with error:
Caused by: liquibase.exception.DatabaseException: org.postgresql.util.PSQLException: FATAL: database “test213” does not exist

Hi Serg,

Check if user database have role for createdb:

postgres=> SELECT rolname FROM pg_roles WHERE rolcreatedb;

and also for login:

postgres=> SELECT rolname FROM pg_roles WHERE rolcanlogin;
postgres=# SELECT rolname FROM pg_roles WHERE rolcreatedb;
 rolname
----------
 postgres
(1 row)
postgres=# SELECT rolname FROM pg_roles WHERE rolcanlogin;
 rolname
----------
 postgres
(1 row)

This is test PostgerSQL server having postgres user only so I can not fail with user to connect.

Hi

Could you please provide idea.log file?