diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index 5d06a0fbd3..3a307c4e32 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -5424,6 +5424,56 @@ public class DSL { return new SQLTable(queryPart(template, parameters)); } + /** + * Create a "plain SQL" sequence. + *
+ * NOTE: When inserting plain SQL into jOOQ objects, you must
+ * guarantee syntax integrity. You may also create the possibility of
+ * malicious SQL injection. Be sure to properly use bind variables and/or
+ * escape literals when concatenated into SQL clauses!
+ *
+ * @param sql The SQL
+ * @return A field wrapping the plain SQL
+ */
+ @Support
+ public static Sequence
+ * NOTE: When inserting plain SQL into jOOQ objects, you must
+ * guarantee syntax integrity. You may also create the possibility of
+ * malicious SQL injection. Be sure to properly use bind variables and/or
+ * escape literals when concatenated into SQL clauses!
+ *
+ * @param sql The SQL
+ * @param type The field type
+ * @return A field wrapping the plain SQL
+ */
+ @Support
+ public static
+ * NOTE: When inserting plain SQL into jOOQ objects, you must
+ * guarantee syntax integrity. You may also create the possibility of
+ * malicious SQL injection. Be sure to properly use bind variables and/or
+ * escape literals when concatenated into SQL clauses!
+ *
+ * @param sql The SQL
+ * @param type The field type
+ * @return A field wrapping the plain SQL
+ */
+ @Support
+ public static