[#5509] Cannot combine INSERT .. SELECT .. RETURNING with an arbitrary number of columns

This commit is contained in:
lukaseder 2016-08-24 15:07:39 +01:00
parent a3f33268b5
commit 2fd9612cfb

View File

@ -91,5 +91,5 @@ public interface InsertValuesStepN<R extends Record> extends InsertOnDuplicateSt
* {@link DSLContext#insertInto(Table, Collection)}
*/
@Support
InsertReturningStep<R> select(Select<?> select);
InsertOnDuplicateStep<R> select(Select<?> select);
}