We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f5d20 commit 65e8bc5Copy full SHA for 65e8bc5
src/main/java/io/elastic/jdbc/triggers/SelectTrigger.java
@@ -106,9 +106,9 @@ private void checkConfig(JsonObject config) {
106
Pattern pattern = Pattern.compile(Utils.TEMPLATE_REGEXP);
107
Matcher matcher = pattern.matcher(sqlQuery);
108
if (matcher.find()) {
109
- throw new RuntimeException("Use of prepared statement variables template '"
+ throw new RuntimeException("Use of prepared statement variables is forbidden: '"
110
+ matcher.group()
111
- + "' is forbidden");
+ + "'");
112
}
113
114
0 commit comments