Simplified DSL interface hierarchy, compatibly
This commit is contained in:
parent
d909d6cef0
commit
52e786b0b6
@ -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.
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user