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
SELECT x3.name::text FROM User x3 WHERE x3.id > 1 AND x3.id < 10 SELECT user.name::text AS _1, order.id, order.userId FROM Order order, User user WHERE order.userId = user.id
Actual behavior
QueryMeta Does not apply to queries SELECT x3.name FROM User x3 WHERE x3.id > 1 AND x3.id < 10 SELECT user.name AS _1, order.id, order.userId FROM Order order, User user WHERE order.userId = user.id
Version: 4.8.4
Module: quill-jdbc-zio
Database: postgresql
Expected behavior
SELECT x3.name::text FROM User x3 WHERE x3.id > 1 AND x3.id < 10
SELECT user.name::text AS _1, order.id, order.userId FROM Order order, User user WHERE order.userId = user.id
Actual behavior
QueryMeta Does not apply to queries
SELECT x3.name FROM User x3 WHERE x3.id > 1 AND x3.id < 10
SELECT user.name AS _1, order.id, order.userId FROM Order order, User user WHERE order.userId = user.id
Steps to reproduce the behavior
scastie
@getquill/maintainers
The text was updated successfully, but these errors were encountered: