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.
2 parents 89f5d20 + 65e8bc5 commit 5b8e59bCopy full SHA for 5b8e59b
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