Subclasses may call this method to create UDTField objects that are linked to this table. @param name The name of the field (case-sensitive!) @param type The data type of the field @deprecated - 3.12.0 - [#8000] - Use #createField(Name, DataType, UDT) instead
(String name, DataType<? extends T> type, UDT<R> udt)
| 240 | * instead. |
| 241 | */ |
| 242 | @Deprecated |
| 243 | protected static final <R extends UDTRecord<R>, T> UDTField<R, T> createField(String name, DataType<? extends T> type, UDT<R> udt) { |
| 244 | return createField(DSL.name(name), type, udt, "", null, null); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Subclasses may call this method to create {@link UDTField} objects that |
no test coverage detected