Browse Source
H2 2.x contains several important changes such as moving the primary key generation mechanism to a sequence-based identifier. This commit fixes a number of tests that were failing. Closes gh-29651 Co-authored-by: Andy Wilkinson <wilkinsona@vmware.com>pull/29745/head
11 changed files with 39 additions and 32 deletions
@ -1 +1 @@
@@ -1 +1 @@
|
||||
INSERT INTO NON_ANNOTATED (ID, VALUE) values (2000, 'Test'); |
||||
INSERT INTO NON_ANNOTATED (id, item) values (2000, 'Test'); |
||||
|
||||
@ -1 +1 @@
@@ -1 +1 @@
|
||||
INSERT INTO USER(ID, USERNAME, VIN) values (123, 'sframework', '01234567890123456'); |
||||
INSERT INTO DRIVER(id, username, vin) values (123, 'sframework', '01234567890123456'); |
||||
|
||||
Loading…
Reference in new issue