In our Spring Boot 3 project we want to use the following property to limit SQL query runtime to 2 mins:
spring.jpa.properties.jakarta.persistence.query.timeout=120000
We also use Liquibase for data migrations during service startup.
Since we do not want to have this timeout for Liquibase run scripts: does Liquibase consider this property or does it ignore it?