[jOOQ/jOOQ#12425] Added QOM API tests

Make sure accessors always have the same $ prefix
This commit is contained in:
Lukas Eder 2021-09-30 17:01:31 +02:00
parent 706241241a
commit 16a1a75379
2 changed files with 2 additions and 2 deletions

View File

@ -460,7 +460,7 @@ public final class QOM {
}
public interface MRegexpLike extends MCondition {
@NotNull MField<?> $search();
@NotNull MField<String> pattern();
@NotNull MField<String> $pattern();
}
public interface MExtract extends MField<Integer> {
@NotNull MField<?> $field();

View File

@ -149,7 +149,7 @@ final class RegexpLike extends AbstractCondition implements MRegexpLike {
}
@Override
public final Field<String> pattern() {
public final Field<String> $pattern() {
return pattern;
}