You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quill insists of wrapping the query into a subquery val result = run(sql"Select p.name, p.age FROM Person p use INDEX(player_custom_idx)".as[Query[Person]])
Version: 4.8.5 Module: quill-core Database: mysql
Expected behavior
Select p.name, p.age FROM Person p use INDEX(player_custom_idx)
Actual behavior
SELECT x.name, x.age FROM (Select p.name, p.age FROM Person p use INDEX(player_custom_idx)) x
Workaround
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
Quill insists of wrapping the query into a subquery
val result = run(sql"Select p.name, p.age FROM Person p use INDEX(player_custom_idx)".as[Query[Person]])
Version:
4.8.5
Module:
quill-core
Database:
mysql
Expected behavior
Select p.name, p.age FROM Person p use INDEX(player_custom_idx)
Actual behavior
SELECT x.name, x.age FROM (Select p.name, p.age FROM Person p use INDEX(player_custom_idx)) x
Workaround
@getquill/maintainers
The text was updated successfully, but these errors were encountered: