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 u from User u where foo = ?#{bar} and bar = ?2 gets rewritten to select u from User u where foo = ?3 and bar = ?2 although we could use free labels and rewrite it to select u from User u where foo = ?1 and bar = ?2
The text was updated successfully, but these errors were encountered:
mp911de
changed the title
StringQuery Expression parameter detection used the highest (and not available) parameter indices
Refine StringQuery parameter index allocation
Jan 29, 2025
select u from User u where foo = ?#{bar} and bar = ?2
gets rewritten toselect u from User u where foo = ?3 and bar = ?2
although we could use free labels and rewrite it toselect u from User u where foo = ?1 and bar = ?2
The text was updated successfully, but these errors were encountered: