[jOOQ/jOOQ#11063] Add TableOptions.function(String)

This commit is contained in:
Lukas Eder 2020-12-01 17:50:59 +01:00
parent 7e504ef6f7
commit 8c5c326cdb

View File

@ -203,6 +203,14 @@ public final class TableOptions implements Serializable {
return C_FUNCTION;
}
/**
* Create a new {@link TableOptions} object for a {@link TableType#FUNCTION}.
*/
@NotNull
public static final TableOptions function(String source) {
return new TableOptions(TableType.FUNCTION, source);
}
/**
* The table type.
* <p>