-
Notifications
You must be signed in to change notification settings - Fork 303
Conversation
…tax, preparation for #667 via commented out dependencies
FYI: Travis again is not usable due to technical issues. Local |
@vapadwal any review feedback? |
I had run few tests for mysql,postgres and oracle, below are the findings: For MySql, After the upgrade of Spring boot 2, Hibernate version has been upgraded to 5.3.x . In this version of hibernate there is change in the usage of strategy - AUTO- @GeneratedValue(strategy = GenerationType.AUTO And we are getting below exception when we use the above Solution to this would be to use as below in class ApplicationPersistenceEntity.java and AdvancedRevisionEntity.java For Postgres, Caused by: java.sql.SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented. To this we should add the following property in application.properties please see the reference - spring-projects/spring-boot#12007 (comment) For oracle getting below error when using oracle 11g xe Flyway Enterprise or Oracle upgrade required: Oracle 11 is past regular support by Oracle and no longer supported by Flyway Open Source or Pro, but still supported by Flyway Enterprise. As flyway community edition(open source) and Pro is not supported by oracle 11g xe Will install oracle 12 c and see if it is working or not |
After installing oracle 12 C, the above error is resolved, It now works with the above said solution. |
@vapadwal Thank you so much for your testing. This is extremely valuable feedback and information. |
I have raised an issue #674 as the above issue has nothing to do with it. |
After my review of #665 I hereby provide some improvement/fixes.