-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://build.spring.io/browse/INT-FATS5IC-457 The H2 `1.4.197` has fixed some issues (in particular h2database/h2database#178) and introduced some breaking changes for us, although they are reasonably good. * Fix `JdbcOutboundGatewayParserTests` to use correct identifiers for returned generated keys instead of previously used `SCOPE_IDENTITY()` **Cherry-pick to 5.0.x and 4.3.x** (cherry picked from commit 7b86ca7) # Conflicts: # build.gradle
- Loading branch information
1 parent
b93efd6
commit ed79a95
Showing
4 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...gration-jdbc/src/test/java/org/springframework/integration/jdbc/config/outboundSchema.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
drop table foos; | ||
drop table bars; | ||
create table foos(id varchar(100),status int,name varchar(20)); | ||
create table bars(id int identity,status int,name varchar(20)); | ||
create table foos(id varchar(100), status int, name varchar(20)); | ||
create table bars(id int identity, status int, name varchar(20)); |