Skip to content

Commit 2d8f9be

Browse files
committed
atomic grouping covering more
1 parent 2d4a8f4 commit 2d8f9be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • domain-models-runtime/src/main/java/org/folio/rest/persist

domain-models-runtime/src/main/java/org/folio/rest/persist/PgUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)