We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version: 3.3.0-SNAPSHOT Module: quill-jdbc Database: ALL
3.3.0-SNAPSHOT
quill-jdbc
ALL
The typing in the following should work:
val preparers: Connection => List[PreparedStatement] = ctx.prepare(liftQuery(products).foreach(e => query[Product].insert(e)))
Instead the following exception is thrown:
Error:(29, 42) polymorphic expression cannot be instantiated to expected type; found : [A <: io.getquill.MyJdbcTest.ctx.Action[_]]io.getquill.MyJdbcTest.ctx.BatchAction[A] required: io.getquill.MyJdbcTest.ctx.Quoted[io.getquill.MyJdbcTest.ctx.BatchAction[io.getquill.MyJdbcTest.ctx.Action[_]]] ctx.prepare(liftQuery(products).foreach(e => query[Product].insert(e)))
Quote the batch insert first:
val q = quote { liftQuery(products).foreach(e => query[Product].insert(e)) } val preparers: Connection => List[PreparedStatement] = ctx.prepare(q)
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
3.3.0-SNAPSHOT
Module:
quill-jdbc
Database:
ALL
Expected behavior
The typing in the following should work:
Actual behavior
Instead the following exception is thrown:
Workaround
Quote the batch insert first:
@getquill/maintainers
The text was updated successfully, but these errors were encountered: