[#8173] SelectIntoStep.into() should return SelectFromStep, not SelectIntoStep

This commit is contained in:
lukaseder 2019-01-07 12:46:24 +01:00
parent c7d1366438
commit 1044ab4900

View File

@ -123,5 +123,5 @@ public interface SelectIntoStep<R extends Record> extends SelectFromStep<R> {
* Add an <code>INTO</code> clause to the <code>SELECT</code> statement.
*/
@Support({ CUBRID, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
SelectIntoStep<Record> into(Table<?> table);
SelectFromStep<Record> into(Table<?> table);
}