diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index c5f3e2e262..a96f9bdab8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -479,9 +479,9 @@ public final class QOM { /** * The INSERT statement. */ - public interface Insert + public interface Insert extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $into(); @@ -523,9 +523,9 @@ public final class QOM { /** * An INSERT statement with a RETURNING clause. */ - public interface InsertReturning + public interface InsertReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Insert $insert(); @CheckReturnValue @@ -538,9 +538,9 @@ public final class QOM { /** * The UPDATE statement. */ - public interface Update + public interface Update extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $table(); @@ -566,9 +566,9 @@ public final class QOM { /** * An UPDATE statement with a RETURNING clause. */ - public interface UpdateReturning + public interface UpdateReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Update $update(); @CheckReturnValue @@ -581,9 +581,9 @@ public final class QOM { /** * The DELETE statement. */ - public interface Delete + public interface Delete extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $from(); @@ -606,9 +606,9 @@ public final class QOM { /** * An DELETE statement with a RETURNING clause. */ - public interface DeleteReturning + public interface DeleteReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Delete $delete(); @CheckReturnValue