[jOOQ/jOOQ#12425] Move XMLCONCAT to API generator

This commit is contained in:
Lukas Eder 2021-09-21 15:45:06 +02:00
parent 8f77562fc8
commit 1ed7d8969c

View File

@ -22895,25 +22895,6 @@ public class DSL {
return new XMLParse(content, DocumentOrContent.CONTENT);
}
/**
* The XML concat function.
*/
@NotNull
@Support({ POSTGRES })
@SafeVarargs
public static Field<XML> xmlconcat(Field<?>... fields) {
return xmlconcat(asList(fields));
}
/**
* The XML concat function.
*/
@NotNull
@Support({ POSTGRES })
public static Field<XML> xmlconcat(Collection<? extends Field<?>> fields) {
return new XMLConcat(fields);
}