Skip to content
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

Return argument of prepare with batch action does not type correctly #1518

Open
deusaquilus opened this issue Jul 14, 2019 · 0 comments
Open

Comments

@deusaquilus
Copy link
Collaborator

Version: 3.3.0-SNAPSHOT
Module: quill-jdbc
Database: ALL

Expected behavior

The typing in the following should work:

val preparers: Connection => List[PreparedStatement] =
  ctx.prepare(liftQuery(products).foreach(e => query[Product].insert(e)))

Actual behavior

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)))

Workaround

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant