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
If you use non ASCII characters as a name (e.g german umlauts) then NamedParameterUtils.isParameterSeparator will throw an ArrayIndexOutOfBoundsException because the character-code is taken as array index for the boolean array
private static final boolean[] separatorIndex = new boolean[128];
This bug was introduced in version 5.3.0 with this commit b2322e5
Example query to reproduce the problem:
INSERT INTO csv2sql (Geplantes_Auslaufdatum, Einführungsjahr, Neueinführung) VALUES (:Geplantes_Auslaufdatum, :Einführungsjahr, :Neueinführung)
Uh oh!
There was an error while loading. Please reload this page.
Torsten Kuhnhenne opened SPR-16472 and commented
If you use non ASCII characters as a name (e.g german umlauts) then NamedParameterUtils.isParameterSeparator will throw an ArrayIndexOutOfBoundsException because the character-code is taken as array index for the boolean array
This bug was introduced in version 5.3.0 with this commit b2322e5
Example query to reproduce the problem:
Affects: 5.0.3
Issue Links:
Referenced from: commits ac7a699
The text was updated successfully, but these errors were encountered: