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
I'm using json_each to pass dynamic values in absence of sqlc.slice and have query part like following which doesn't transform properly:
-- query.sqlAND (
@accountTypes IS NULLORat.typeIN (
SELECT value
FROM json_each(@accountTypes)
)
)
-- query_sql.tsAND (
?2 IS NULLORat.typeIN (
SELECT value
FROM json_each(@accountTypes)
)
)
The text was updated successfully, but these errors were encountered:
I'm using json_each to pass dynamic values in absence of sqlc.slice and have query part like following which doesn't transform properly:
The text was updated successfully, but these errors were encountered: