-
Notifications
You must be signed in to change notification settings - Fork 693
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
MySql BatchInsert returns BigInteger #280
Comments
Could you provide sample to test that case? Because I use Exposed with MySQL and never faced such behavior. |
I met this issue today as well. Here was my trace to this issue:
Not like Exposed/src/main/kotlin/org/jetbrains/exposed/sql/Queries.kt Lines 101 to 105 in 85f2da2
Exposed/src/main/kotlin/org/jetbrains/exposed/sql/statements/InsertStatement.kt Lines 19 to 20 in 85f2da2
My opinion is adding column type handling to |
Should be fixed in master since 0.12.1 (related issue #424) |
BatchInsert on MySql db returns list of BigInteger as list of insert id's, even when primary key id is integer, h2:mem:test, returns list of integer in this case
The text was updated successfully, but these errors were encountered: