File tree Expand file tree Collapse file tree
domain-models-runtime/src/main/java/org/folio/rest/persist Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ public final class PgUtil {
105105 * 3 = <code>users</code>
106106 */
107107 private static final Pattern KEY_NOT_PRESENT_PATTERN = Pattern .compile (
108- "^Key (?>[(](.+)[)]=[(])(?> (.*)[)]) is not present in table \" ([^\" ]+)\" .$" );
108+ "^Key (?>(?> [(](.+)[)]=[(])(.*)[)]) is not present in table \" ([^\" ]+)\" .$" );
109109 /**
110110 * Assume this String:
111111 * <p>
@@ -120,7 +120,7 @@ public final class PgUtil {
120120 * 3 = <code>referencing</code>
121121 */
122122 private static final Pattern KEY_STILL_REFERENCED_PATTERN = Pattern .compile (
123- "^Key (?>[(](.+)[)]=[(])(?> (.*)[)]) is still referenced from table \" ([^\" ]+)\" .$" );
123+ "^Key (?>(?> [(](.+)[)]=[(])(.*)[)]) is still referenced from table \" ([^\" ]+)\" .$" );
124124
125125 /** Number of records to read from the sort index in getWithOptimizedSql and generateOptimizedSql method */
126126 private static int optimizedSqlSize = 10000 ;
You can’t perform that action at this time.
0 commit comments