diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index 4af9f0d21b..aed7396868 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -4153,6 +4153,14 @@ public class Factory implements FactoryOperations { // XXX Mathematical functions // ------------------------------------------------------------------------ + /** + * Get the rand() function + */ + @Support + public static Field rand() { + return new Rand(); + } + /** * Find the greatest among all values *

@@ -6019,14 +6027,6 @@ public class Factory implements FactoryOperations { return new CurrentUser(); } - /** - * Get the rand() function - */ - @Support - public static Field rand() { - return new Rand(); - } - // ------------------------------------------------------------------------- // XXX Fast querying // -------------------------------------------------------------------------