Updated to spring-cloud-build 2.2.0.BUILD-SNAPSHOT
Updated Tests to support the changes in the latest H2 database
Must use "-ifNotExists", when using the H2 TCP Server
This commit is contained in:
Glenn Renfro
2019-03-12 09:45:46 -04:00
committed by Michael Minella
parent 1786732b40
commit ce51987f98
4 changed files with 8 additions and 7 deletions

View File

@@ -128,10 +128,10 @@ public class SimpleTaskAutoConfigurationTests {
verifyExceptionThrownDefaultExecutable(ApplicationContextException.class,
"Failed to start " + "bean 'taskLifecycleListener'; nested exception is "
+ "org.springframework.dao.DataAccessResourceFailureException: "
+ "Could not obtain sequence value; nested exception is org.h2.jdbc.JdbcSQLException: "
+ "Could not obtain sequence value; nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: "
+ "Syntax error in SQL statement \"SELECT FOOBARLESSSEQ.NEXTVAL FROM[*] DUAL \"; "
+ "expected \"identifier\"; SQL statement:\n"
+ "select foobarlessSEQ.nextval from dual [42001-197]",
+ "select foobarlessSEQ.nextval from dual [42001-198]",
applicationContextRunner);
}