diff --git a/jOOQ/src/main/java/org/jooq/DDLQuery.java b/jOOQ/src/main/java/org/jooq/DDLQuery.java index c294f32ec1..15bd4c5fa0 100644 --- a/jOOQ/src/main/java/org/jooq/DDLQuery.java +++ b/jOOQ/src/main/java/org/jooq/DDLQuery.java @@ -37,9 +37,21 @@ */ package org.jooq; +import org.jooq.impl.DSL; /** * A marker interface for all DDL queries. + *

+ * A lot of DDL queries come with syntax that requires emulation using anonymous + * blocks via {@link DSL#begin(Statement...)}. While basic anonymous blocks are + * supported in the jOOQ Open Source Edition as well, more sophisticated blocks + * and other procedural logic is a commercial only feature. Examples for this + * are: + *

* * @author Lukas Eder */