-
Notifications
You must be signed in to change notification settings - Fork 694
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
H2 support for INSERT IGNORE #186
Comments
@dcapwell, |
@Tapac how can i config "(insertIgnore = insert..on duplicate key update, replace = merge)" |
FWIW, H2 supports |
Still getting error on IGNORE with 1.4.200... |
Oh, just came to mention that I also get that on 1.4.199. Specifically:
Postgre supports insert ignore for some time, is there a reason it's only supported with mysql? |
@Tapac same for me as the comment above ^ any ideas? |
I tried out Exposed because I needed to support both H2 and Postgres, and wanted the ability to do a logical insert if not exists, which is different for both DBs; below is the code I tried to write
My guess at what
insertIgnore
means was insert if not exists so expected the H2 version to produce aMERGE
statement as followsThe text was updated successfully, but these errors were encountered: