File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/java/org/springframework/jdbc/core/namedparam
test/java/org/springframework/jdbc/core/namedparam Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public abstract class NamedParameterUtils {
55
55
* Set of characters that qualify as parameter separators,
56
56
* indicating that a parameter name in a SQL String has ended.
57
57
*/
58
- private static final String PARAMETER_SEPARATORS = "\" ':&,;()[] |=+-*%/\\ <>^" ;
58
+ private static final String PARAMETER_SEPARATORS = "\" ':&,;()|=+-*%/\\ <>^" ;
59
59
60
60
/**
61
61
* An index with separator flags per character code.
Original file line number Diff line number Diff line change 31
31
import javax .sql .DataSource ;
32
32
33
33
import org .junit .Before ;
34
+ import org .junit .Ignore ;
34
35
import org .junit .Rule ;
35
36
import org .junit .Test ;
36
37
import org .junit .rules .ExpectedException ;
@@ -145,6 +146,7 @@ public void testExecute() throws SQLException {
145
146
verify (connection ).close ();
146
147
}
147
148
149
+ @ Ignore ("SPR-16340" )
148
150
@ Test
149
151
public void testExecuteArray () throws SQLException {
150
152
given (preparedStatement .executeUpdate ()).willReturn (1 );
You can’t perform that action at this time.
0 commit comments