From e60aeedf589cbd412aa2d9b6ea82138341047e98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jun 2022 20:13:08 +0000 Subject: [PATCH 1/2] Bump h2 from 1.4.197 to 2.1.210 Bumps [h2](https://github.com/h2database/h2database) from 1.4.197 to 2.1.210. - [Release notes](https://github.com/h2database/h2database/releases) - [Commits](https://github.com/h2database/h2database/compare/version-1.4.197...version-2.1.210) --- updated-dependencies: - dependency-name: com.h2database:h2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index adbc77cc..f0fe0416 100644 --- a/pom.xml +++ b/pom.xml @@ -63,7 +63,7 @@ com.h2database h2 - 1.4.197 + 2.1.210 test From 3055dd215164f79652678b2ad2d0a76ba2713788 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Mon, 13 Jun 2022 15:15:43 -0500 Subject: [PATCH 2/2] Replace SERIAL with INT AUTO_INCREMENT (SERIAL stopped working in this h2 update?) --- src/test/resources/prime-test-database.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/prime-test-database.sql b/src/test/resources/prime-test-database.sql index 07bb1dd6..d95d660b 100644 --- a/src/test/resources/prime-test-database.sql +++ b/src/test/resources/prime-test-database.sql @@ -22,7 +22,7 @@ DROP TABLE IF EXISTS person; CREATE TABLE person ( - id SERIAL, + id INT AUTO_INCREMENT, create_date TIMESTAMP DEFAULT now(), modify_date TIMESTAMP DEFAULT now(),