-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration with H2 #1336
base: main
Are you sure you want to change the base?
Integration with H2 #1336
Conversation
ae5a255
to
7b4f29a
Compare
We had this error on CI (I need to have a look at it later):
|
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
|
||
@Override | ||
public String getUri() { | ||
return "h2:~/test;DATABASE_TO_UPPER=FALSE;DB_CLOSE_DELAY=-1"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will use an H2 instance baked by a file in the home directory. Could we use an in-memory instance instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I will change it
Fix #929
It's a draft because I need to review it