[jOOQ/jOOQ#13255] Support casting VARCHAR to XML / XMLTYPE in Oracle
This commit is contained in:
parent
b7fdd812bc
commit
fb54174433
@ -46,6 +46,7 @@ import static org.jooq.impl.Names.N_CAST;
|
||||
import static org.jooq.impl.Names.N_TO_CLOB;
|
||||
import static org.jooq.impl.Names.N_TO_DATE;
|
||||
import static org.jooq.impl.Names.N_TO_TIMESTAMP;
|
||||
import static org.jooq.impl.Names.N_XMLTYPE;
|
||||
import static org.jooq.impl.SQLDataType.BOOLEAN;
|
||||
import static org.jooq.impl.SQLDataType.CHAR;
|
||||
import static org.jooq.impl.SQLDataType.DECIMAL;
|
||||
@ -301,6 +302,10 @@ final class Cast<T> extends AbstractField<T> implements QOM.Cast<T> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -322,6 +322,7 @@ final class Names {
|
||||
static final Name N_XMLROOT = systemName("xmlroot");
|
||||
static final Name N_XMLTABLE = systemName("xmltable");
|
||||
static final Name N_XMLTEXT = systemName("xmltext");
|
||||
static final Name N_XMLTYPE = systemName("xmltype");
|
||||
static final Name N_XPATH = systemName("xpath");
|
||||
static final Name N_ZEROBLOB = systemName("zeroblob");
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user