[jOOQ/jOOQ#11063] Add TableOptions.function(String)
This commit is contained in:
parent
7e504ef6f7
commit
8c5c326cdb
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user