[jOOQ/jOOQ#5799] Move Table::withOrdinality into OSS section!

This commit is contained in:
Lukas Eder 2022-12-15 17:13:41 +01:00
parent cc2e45792b
commit bfe5d5151f
2 changed files with 6 additions and 6 deletions

View File

@ -3032,11 +3032,12 @@ extends
/**
* Add the <code>WITH ORDINALITY</code> clause.
*/
@NotNull
@Support({ CUBRID, FIREBIRD, H2, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB })
Table<Record> withOrdinality();
/**
* Create a new <code>TABLE</code> reference from this table, applying

View File

@ -1112,7 +1112,6 @@ implements
return as(otherTable.getUnqualifiedName(), (f, i) -> aliasFunction.apply(f, i).getUnqualifiedName());
}
@SuppressWarnings("unchecked")
@Override
public final Table<Record> withOrdinality() {
return new OrdinalityTable<>(this);