Simplified DSL interface hierarchy, compatibly

This commit is contained in:
Lukas Eder 2013-12-31 16:33:01 +01:00
parent d909d6cef0
commit 52e786b0b6
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ import static org.jooq.SQLDialect.MYSQL;
*
* @author Lukas Eder
*/
public interface InsertOnDuplicateStep<R extends Record> extends InsertFinalStep<R>, InsertReturningStep<R> {
public interface InsertOnDuplicateStep<R extends Record> extends InsertReturningStep<R> {
/**
* Add an <code>ON DUPLICATE KEY UPDATE</code> clause to this insert query.

View File

@ -74,7 +74,7 @@ import java.util.Collection;
*
* @author Lukas Eder
*/
public interface InsertReturningStep<R extends Record> {
public interface InsertReturningStep<R extends Record> extends InsertFinalStep<R> {
/**
* Configure the <code>INSERT</code> statement to return all fields in