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
When using JDBI, adding parameters to queries uses one of the following formats:
where user_id = :user_id
or
user_id in ( <user_ids> )
The included formatter doesn't handle either of these well:
WHERE user_id =:user_id
or
user_id IN (
< user_ids >
)
In particular, the IN style statement breaks because a space is added between < and the word. Could a parameter to configure spaces between (, < and words be added?
The text was updated successfully, but these errors were encountered:
When using JDBI, adding parameters to queries uses one of the following formats:
or
The included formatter doesn't handle either of these well:
or
In particular, the IN style statement breaks because a space is added between
<
and the word. Could a parameter to configure spaces between(
,<
and words be added?The text was updated successfully, but these errors were encountered: