ALTER DATABASE statement.
+ */
+ public static final AlterDatabase AlterDatabase() {
+ return new org.jooq.impl.AlterDatabaseImpl(
+ null,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The ALTER DATABASE statement.
+ */
+ public static final AlterDatabase AlterDatabase(
+ Catalog database,
+ boolean ifExists,
+ Catalog renameTo
+ ) {
+ return new org.jooq.impl.AlterDatabaseImpl(
+ null,
+ database,
+ ifExists,
+ renameTo
+ );
+ }
+
/**
* The ALTER DATABASE statement.
*/
@@ -1778,6 +1806,67 @@ public final class QOM {
@NotNull AlterDatabase $renameTo(Catalog renameTo);
}
+ /**
+ * The ALTER DOMAIN statement.
+ */
+ public static final ALTER DOMAIN statement.
+ */
+ public static final ALTER DOMAIN statement.
*/
@@ -1831,6 +1920,37 @@ public final class QOM {
@NotNull AlterDomainALTER INDEX statement.
+ */
+ public static final AlterIndex AlterIndex() {
+ return new org.jooq.impl.AlterIndexImpl(
+ null,
+ null,
+ false,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The ALTER INDEX statement.
+ */
+ public static final AlterIndex AlterIndex(
+ Index index,
+ boolean ifExists,
+ Table> on,
+ Index renameTo
+ ) {
+ return new org.jooq.impl.AlterIndexImpl(
+ null,
+ index,
+ ifExists,
+ on,
+ renameTo
+ );
+ }
+
/**
* The ALTER INDEX statement.
*/
@@ -1854,6 +1974,34 @@ public final class QOM {
@NotNull AlterIndex $renameTo(Index renameTo);
}
+ /**
+ * The ALTER SCHEMA statement.
+ */
+ public static final AlterSchema AlterSchema() {
+ return new org.jooq.impl.AlterSchemaImpl(
+ null,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The ALTER SCHEMA statement.
+ */
+ public static final AlterSchema AlterSchema(
+ Schema schema,
+ boolean ifExists,
+ Schema renameTo
+ ) {
+ return new org.jooq.impl.AlterSchemaImpl(
+ null,
+ schema,
+ ifExists,
+ renameTo
+ );
+ }
+
/**
* The ALTER SCHEMA statement.
*/
@@ -1874,6 +2022,67 @@ public final class QOM {
@NotNull AlterSchema $renameTo(Schema renameTo);
}
+ /**
+ * The ALTER SEQUENCE statement.
+ */
+ public static final ALTER SEQUENCE statement.
+ */
+ public static final ALTER SEQUENCE statement.
*/
@@ -1927,6 +2136,46 @@ public final class QOM {
@NotNull AlterSequenceALTER TYPE statement.
+ */
+ public static final AlterType AlterType() {
+ return new org.jooq.impl.AlterTypeImpl(
+ null,
+ null,
+ false,
+ null,
+ null,
+ null,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The ALTER TYPE statement.
+ */
+ public static final AlterType AlterType(
+ Name type,
+ boolean ifExists,
+ Name renameTo,
+ Schema setSchema,
+ FieldALTER TYPE statement.
*/
@@ -1959,6 +2208,46 @@ public final class QOM {
@NotNull AlterType $renameValueTo(FieldALTER VIEW statement.
+ */
+ public static final AlterView AlterView() {
+ return new org.jooq.impl.AlterViewImpl(
+ null,
+ null,
+ null,
+ false,
+ false,
+ null,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The ALTER VIEW statement.
+ */
+ public static final AlterView AlterView(
+ Table> view,
+ Collection extends Field>> fields,
+ boolean materialized,
+ boolean ifExists,
+ Comment comment,
+ Table> renameTo,
+ Select> as
+ ) {
+ return new org.jooq.impl.AlterViewImpl(
+ null,
+ view,
+ fields,
+ materialized,
+ ifExists,
+ comment,
+ renameTo,
+ as
+ );
+ }
+
/**
* The ALTER VIEW statement.
*/
@@ -1991,6 +2280,40 @@ public final class QOM {
@NotNull AlterView $as(Select> as);
}
+ /**
+ * The COMMENT ON TABLE statement.
+ */
+ public static final CommentOn CommentOn() {
+ return new org.jooq.impl.CommentOnImpl(
+ null,
+ null,
+ false,
+ false,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The COMMENT ON TABLE statement.
+ */
+ public static final CommentOn CommentOn(
+ Table> table,
+ boolean isView,
+ boolean isMaterializedView,
+ Field> field,
+ Comment comment
+ ) {
+ return new org.jooq.impl.CommentOnImpl(
+ null,
+ table,
+ isView,
+ isMaterializedView,
+ field,
+ comment
+ );
+ }
+
/**
* The COMMENT ON TABLE statement.
*/
@@ -2017,6 +2340,31 @@ public final class QOM {
@NotNull CommentOn $comment(Comment comment);
}
+ /**
+ * The CREATE DATABASE statement.
+ */
+ public static final CreateDatabase CreateDatabase() {
+ return new org.jooq.impl.CreateDatabaseImpl(
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The CREATE DATABASE statement.
+ */
+ public static final CreateDatabase CreateDatabase(
+ Catalog database,
+ boolean ifNotExists
+ ) {
+ return new org.jooq.impl.CreateDatabaseImpl(
+ null,
+ database,
+ ifNotExists
+ );
+ }
+
/**
* The CREATE DATABASE statement.
*/
@@ -2034,6 +2382,40 @@ public final class QOM {
@NotNull CreateDatabase $ifNotExists(boolean ifNotExists);
}
+ /**
+ * The CREATE DOMAIN statement.
+ */
+ public static final CREATE DOMAIN statement.
+ */
+ public static final CREATE DOMAIN statement.
*/
@@ -2101,6 +2483,97 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The CREATE INDEX statement.
+ */
+ public static final CreateIndex CreateIndex() {
+ return new org.jooq.impl.CreateIndexImpl(
+ null,
+ false,
+ null,
+ false,
+ null,
+ null,
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The CREATE INDEX statement.
+ */
+ public static final CreateIndex CreateIndex(
+ boolean unique,
+ Index index,
+ boolean ifNotExists,
+ Table> table,
+ Collection extends OrderField>> on,
+ Collection extends Field>> include,
+ Condition where,
+ boolean excludeNullKeys
+ ) {
+ return new org.jooq.impl.CreateIndexImpl(
+ null,
+ unique,
+ index,
+ ifNotExists,
+ table,
+ on,
+ include,
+ where,
+ excludeNullKeys
+ );
+ }
+
/**
* The CREATE INDEX statement.
*/
@@ -2165,6 +2638,88 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The CREATE TABLE statement.
+ */
+ public static final CreateTable CreateTable() {
+ return new org.jooq.impl.CreateTableImpl(
+ null,
+ null,
+ false,
+ false,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The CREATE TABLE statement.
+ */
+ public static final CreateTable CreateTable(
+ Table> table,
+ boolean temporary,
+ boolean ifNotExists,
+ Collection extends TableElement> tableElements,
+ Select> select,
+ WithOrWithoutData withData,
+ TableCommitAction onCommit,
+ Comment comment,
+ SQL storage
+ ) {
+ return new org.jooq.impl.CreateTableImpl(
+ null,
+ table,
+ temporary,
+ ifNotExists,
+ tableElements,
+ select,
+ withData,
+ onCommit,
+ comment,
+ storage
+ );
+ }
+
/**
* The CREATE TABLE statement.
*/
@@ -2203,6 +2758,43 @@ public final class QOM {
@NotNull CreateTable $storage(SQL storage);
}
+ /**
+ * The CREATE VIEW statement.
+ */
+ public static final CREATE VIEW statement.
+ */
+ public static final CREATE VIEW statement.
*/
@@ -2294,6 +2886,106 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The CREATE TYPE statement.
+ */
+ public static final CreateType CreateType() {
+ return new org.jooq.impl.CreateTypeImpl(
+ null,
+ null,
+ false,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The CREATE TYPE statement.
+ */
+ public static final CreateType CreateType(
+ Type> type,
+ boolean ifNotExists,
+ Collection extends FieldCREATE TYPE statement.
*/
@@ -2317,6 +3009,31 @@ public final class QOM {
@NotNull CreateType $attributes(Collection extends Field>> attributes);
}
+ /**
+ * The CREATE SCHEMA statement.
+ */
+ public static final CreateSchema CreateSchema() {
+ return new org.jooq.impl.CreateSchemaImpl(
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The CREATE SCHEMA statement.
+ */
+ public static final CreateSchema CreateSchema(
+ Schema schema,
+ boolean ifNotExists
+ ) {
+ return new org.jooq.impl.CreateSchemaImpl(
+ null,
+ schema,
+ ifNotExists
+ );
+ }
+
/**
* The CREATE SCHEMA statement.
*/
@@ -2334,6 +3051,58 @@ public final class QOM {
@NotNull CreateSchema $ifNotExists(boolean ifNotExists);
}
+ /**
+ * The CREATE SEQUENCE statement.
+ */
+ public static final CreateSequence CreateSequence() {
+ return new org.jooq.impl.CreateSequenceImpl(
+ null,
+ null,
+ false,
+ null,
+ null,
+ null,
+ false,
+ null,
+ false,
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The CREATE SEQUENCE statement.
+ */
+ public static final CreateSequence CreateSequence(
+ Sequence> sequence,
+ boolean ifNotExists,
+ Field extends Number> startWith,
+ Field extends Number> incrementBy,
+ Field extends Number> minvalue,
+ boolean noMinvalue,
+ Field extends Number> maxvalue,
+ boolean noMaxvalue,
+ CycleOption cycle,
+ Field extends Number> cache,
+ boolean noCache
+ ) {
+ return new org.jooq.impl.CreateSequenceImpl(
+ null,
+ sequence,
+ ifNotExists,
+ startWith,
+ incrementBy,
+ minvalue,
+ noMinvalue,
+ maxvalue,
+ noMaxvalue,
+ cycle,
+ cache,
+ noCache
+ );
+ }
+
/**
* The CREATE SEQUENCE statement.
*/
@@ -2378,6 +3147,31 @@ public final class QOM {
@NotNull CreateSequence $noCache(boolean noCache);
}
+ /**
+ * The DROP DATABASE statement.
+ */
+ public static final DropDatabase DropDatabase() {
+ return new org.jooq.impl.DropDatabaseImpl(
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The DROP DATABASE statement.
+ */
+ public static final DropDatabase DropDatabase(
+ Catalog database,
+ boolean ifExists
+ ) {
+ return new org.jooq.impl.DropDatabaseImpl(
+ null,
+ database,
+ ifExists
+ );
+ }
+
/**
* The DROP DATABASE statement.
*/
@@ -2395,6 +3189,34 @@ public final class QOM {
@NotNull DropDatabase $ifExists(boolean ifExists);
}
+ /**
+ * The DROP DOMAIN statement.
+ */
+ public static final DropDomain DropDomain() {
+ return new org.jooq.impl.DropDomainImpl(
+ null,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The DROP DOMAIN statement.
+ */
+ public static final DropDomain DropDomain(
+ Domain> domain,
+ boolean ifExists,
+ Cascade cascade
+ ) {
+ return new org.jooq.impl.DropDomainImpl(
+ null,
+ domain,
+ ifExists,
+ cascade
+ );
+ }
+
/**
* The DROP DOMAIN statement.
*/
@@ -2435,6 +3257,64 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The DROP INDEX statement.
+ */
+ public static final DropIndex DropIndex() {
+ return new org.jooq.impl.DropIndexImpl(
+ null,
+ null,
+ false,
+ null,
+ null
+ );
+ }
+
+ /**
+ * The DROP INDEX statement.
+ */
+ public static final DropIndex DropIndex(
+ Index index,
+ boolean ifExists,
+ Table> on,
+ Cascade cascade
+ ) {
+ return new org.jooq.impl.DropIndexImpl(
+ null,
+ index,
+ ifExists,
+ on,
+ cascade
+ );
+ }
+
/**
* The DROP INDEX statement.
*/
@@ -2478,6 +3358,61 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The DROP SCHEMA statement.
+ */
+ public static final DropSchema DropSchema() {
+ return new org.jooq.impl.DropSchemaImpl(
+ null,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The DROP SCHEMA statement.
+ */
+ public static final DropSchema DropSchema(
+ Schema schema,
+ boolean ifExists,
+ Cascade cascade
+ ) {
+ return new org.jooq.impl.DropSchemaImpl(
+ null,
+ schema,
+ ifExists,
+ cascade
+ );
+ }
+
/**
* The DROP SCHEMA statement.
*/
@@ -2498,6 +3433,31 @@ public final class QOM {
@NotNull DropSchema $cascade(Cascade cascade);
}
+ /**
+ * The DROP SEQUENCE statement.
+ */
+ public static final DropSequence DropSequence() {
+ return new org.jooq.impl.DropSequenceImpl(
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The DROP SEQUENCE statement.
+ */
+ public static final DropSequence DropSequence(
+ Sequence> sequence,
+ boolean ifExists
+ ) {
+ return new org.jooq.impl.DropSequenceImpl(
+ null,
+ sequence,
+ ifExists
+ );
+ }
+
/**
* The DROP SEQUENCE statement.
*/
@@ -2515,6 +3475,37 @@ public final class QOM {
@NotNull DropSequence $ifExists(boolean ifExists);
}
+ /**
+ * The DROP TABLE statement.
+ */
+ public static final DropTable DropTable() {
+ return new org.jooq.impl.DropTableImpl(
+ null,
+ false,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The DROP TABLE statement.
+ */
+ public static final DropTable DropTable(
+ boolean temporary,
+ Table> table,
+ boolean ifExists,
+ Cascade cascade
+ ) {
+ return new org.jooq.impl.DropTableImpl(
+ null,
+ temporary,
+ table,
+ ifExists,
+ cascade
+ );
+ }
+
/**
* The DROP TABLE statement.
*/
@@ -2561,6 +3552,64 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The DROP TYPE statement.
+ */
+ public static final DropType DropType() {
+ return new org.jooq.impl.DropTypeImpl(
+ null,
+ null,
+ false,
+ null
+ );
+ }
+
+ /**
+ * The DROP TYPE statement.
+ */
+ public static final DropType DropType(
+ Collection extends Type>> types,
+ boolean ifExists,
+ Cascade cascade
+ ) {
+ return new org.jooq.impl.DropTypeImpl(
+ null,
+ types,
+ ifExists,
+ cascade
+ );
+ }
+
/**
* The DROP TYPE statement.
*/
@@ -2581,6 +3630,34 @@ public final class QOM {
@NotNull DropType $cascade(Cascade cascade);
}
+ /**
+ * The DROP VIEW statement.
+ */
+ public static final DropView DropView() {
+ return new org.jooq.impl.DropViewImpl(
+ null,
+ null,
+ false,
+ false
+ );
+ }
+
+ /**
+ * The DROP VIEW statement.
+ */
+ public static final DropView DropView(
+ Table> view,
+ boolean materialized,
+ boolean ifExists
+ ) {
+ return new org.jooq.impl.DropViewImpl(
+ null,
+ view,
+ materialized,
+ ifExists
+ );
+ }
+
/**
* The DROP VIEW statement.
*/
@@ -2601,6 +3678,40 @@ public final class QOM {
@NotNull DropView $ifExists(boolean ifExists);
}
+ /**
+ * The GRANT statement.
+ */
+ public static final Grant Grant() {
+ return new org.jooq.impl.GrantImpl(
+ null,
+ null,
+ null,
+ null,
+ false,
+ false
+ );
+ }
+
+ /**
+ * The GRANT statement.
+ */
+ public static final Grant Grant(
+ Collection extends Privilege> privileges,
+ Table> on,
+ Role to,
+ boolean toPublic,
+ boolean withGrantOption
+ ) {
+ return new org.jooq.impl.GrantImpl(
+ null,
+ privileges,
+ on,
+ to,
+ toPublic,
+ withGrantOption
+ );
+ }
+
/**
* The GRANT statement.
*/
@@ -2627,6 +3738,40 @@ public final class QOM {
@NotNull Grant $withGrantOption(boolean withGrantOption);
}
+ /**
+ * The REVOKE statement.
+ */
+ public static final Revoke Revoke() {
+ return new org.jooq.impl.RevokeImpl(
+ null,
+ null,
+ false,
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The REVOKE statement.
+ */
+ public static final Revoke Revoke(
+ Collection extends Privilege> privileges,
+ boolean grantOptionFor,
+ Table> on,
+ Role from,
+ boolean fromPublic
+ ) {
+ return new org.jooq.impl.RevokeImpl(
+ null,
+ privileges,
+ grantOptionFor,
+ on,
+ from,
+ fromPublic
+ );
+ }
+
/**
* The REVOKE statement.
*/
@@ -2653,6 +3798,38 @@ public final class QOM {
@NotNull Revoke $fromPublic(boolean fromPublic);
}
+ /**
+ * The SET statement.
+ *
+ * Set a vendor specific session configuration to a new value.
+ */
+ public static final SetCommand SetCommand() {
+ return new org.jooq.impl.SetCommand(
+ null,
+ null,
+ null,
+ false
+ );
+ }
+
+ /**
+ * The SET statement.
+ *
+ * Set a vendor specific session configuration to a new value.
+ */
+ public static final SetCommand SetCommand(
+ Name name,
+ Param> value,
+ boolean local
+ ) {
+ return new org.jooq.impl.SetCommand(
+ null,
+ name,
+ value,
+ local
+ );
+ }
+
/**
* The SET statement.
*
@@ -2675,6 +3852,32 @@ public final class QOM {
@NotNull SetCommand $local(boolean local);
}
+ /**
+ * The SET CATALOG statement.
+ *
+ * Set the current catalog to a new value.
+ */
+ public static final SetCatalog SetCatalog() {
+ return new org.jooq.impl.SetCatalog(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The SET CATALOG statement.
+ *
+ * Set the current catalog to a new value.
+ */
+ public static final SetCatalog SetCatalog(
+ Catalog catalog
+ ) {
+ return new org.jooq.impl.SetCatalog(
+ null,
+ catalog
+ );
+ }
+
/**
* The SET CATALOG statement.
*
@@ -2691,6 +3894,32 @@ public final class QOM {
@NotNull SetCatalog $catalog(Catalog catalog);
}
+ /**
+ * The SET SCHEMA statement.
+ *
+ * Set the current schema to a new value.
+ */
+ public static final SetSchema SetSchema() {
+ return new org.jooq.impl.SetSchema(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The SET SCHEMA statement.
+ *
+ * Set the current schema to a new value.
+ */
+ public static final SetSchema SetSchema(
+ Schema schema
+ ) {
+ return new org.jooq.impl.SetSchema(
+ null,
+ schema
+ );
+ }
+
/**
* The SET SCHEMA statement.
*
@@ -2707,6 +3936,34 @@ public final class QOM {
@NotNull SetSchema $schema(Schema schema);
}
+ /**
+ * The
+ * Start a transaction
+ */
+ public static final StartTransaction StartTransaction() {
+ return new org.jooq.impl.StartTransaction(
+ null
+ );
+ }
+
/**
* The
@@ -2762,6 +4061,32 @@ public final class QOM {
// StartTransaction
{}
+ /**
+ * The
+ * Specify a savepoint
+ */
+ public static final Savepoint Savepoint() {
+ return new org.jooq.impl.Savepoint(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The
+ * Specify a savepoint
+ */
+ public static final Savepoint Savepoint(
+ Name name
+ ) {
+ return new org.jooq.impl.Savepoint(
+ null,
+ name
+ );
+ }
+
/**
* The
@@ -2778,6 +4103,32 @@ public final class QOM {
@NotNull Savepoint $name(Name name);
}
+ /**
+ * The
+ * Release a savepoint
+ */
+ public static final ReleaseSavepoint ReleaseSavepoint() {
+ return new org.jooq.impl.ReleaseSavepoint(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The
+ * Release a savepoint
+ */
+ public static final ReleaseSavepoint ReleaseSavepoint(
+ Name name
+ ) {
+ return new org.jooq.impl.ReleaseSavepoint(
+ null,
+ name
+ );
+ }
+
/**
* The
@@ -2794,6 +4145,17 @@ public final class QOM {
@NotNull ReleaseSavepoint $name(Name name);
}
+ /**
+ * The
+ * Commit a transaction
+ */
+ public static final Commit Commit() {
+ return new org.jooq.impl.Commit(
+ null
+ );
+ }
+
/**
* The
@@ -2807,6 +4169,32 @@ public final class QOM {
// Commit
{}
+ /**
+ * The
+ * Rollback a transaction
+ */
+ public static final Rollback Rollback() {
+ return new org.jooq.impl.Rollback(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The
+ * Rollback a transaction
+ */
+ public static final Rollback Rollback(
+ Name toSavepoint
+ ) {
+ return new org.jooq.impl.Rollback(
+ null,
+ toSavepoint
+ );
+ }
+
/**
* The
@@ -2823,6 +4211,29 @@ public final class QOM {
@NotNull Rollback $toSavepoint(Name toSavepoint);
}
+ /**
+ * The
+ * The subquery must return exactly one field. This is not checked
+ * by jOOQ and will result in syntax errors in the database, if not used
+ * correctly.
+ */
+ public static final
+ * The subquery must return exactly one field. This is not checked
+ * by jOOQ and will result in syntax errors in the database, if not used
+ * correctly.
+ */
+ public static final
@@ -2960,6 +4583,35 @@ public final class QOM {
// In
{}
+ /**
+ * The
+ * The DISTINCT predicate allows for creating NULL safe comparisons where the two operands
+ * are tested for non-equality
+ */
+ public static final
+ * The DISTINCT predicate allows for creating NULL safe comparisons where the two operands
+ * are tested for non-equality
+ */
+ public static final
@@ -2974,6 +4626,26 @@ public final class QOM {
// IsDistinctFrom
{}
+ /**
+ * The
+ * The NOT DISTINCT predicate allows for creating NULL safe comparisons where the two
+ * operands are tested for equality
+ */
+ public static final
+ * The NOT DISTINCT predicate allows for creating NULL safe comparisons where the two
+ * operands are tested for equality
+ */
+ public static final
@@ -3003,6 +4704,26 @@ public final class QOM {
// IsNotDistinctFrom
{}
+ /**
+ * The
+ * Create a condition to case-insensitively pattern-check this field against
+ * a value.
+ *
+ * This translates to
+ * Create a condition to case-insensitively pattern-check this field against
+ * a value.
+ *
+ * This translates to
@@ -3121,6 +4980,29 @@ public final class QOM {
@NotNull default LikeIgnoreCase $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The
+ * The subquery must return exactly one field. This is not checked
+ * by jOOQ and will result in syntax errors in the database, if not used
+ * correctly.
+ *
+ * If any of the passed values is
+ * The subquery must return exactly one field. This is not checked
+ * by jOOQ and will result in syntax errors in the database, if not used
+ * correctly.
+ *
+ * If any of the passed values is
@@ -3238,6 +5291,32 @@ public final class QOM {
// NotIn
{}
+ /**
+ * The
+ * Create a condition to case-insensitively pattern-check this field against
+ * a value.
+ *
+ * This translates to
+ * Create a condition to case-insensitively pattern-check this field against
+ * a value.
+ *
+ * This translates to
@@ -3311,6 +5456,32 @@ public final class QOM {
@NotNull default NotLikeIgnoreCase $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The
+ * Create a condition to check if this field contains XML data.
+ */
+ public static final IsDocument IsDocument() {
+ return new org.jooq.impl.IsDocument(
+ null
+ );
+ }
+
+ /**
+ * The
+ * Create a condition to check if this field contains XML data.
+ */
+ public static final IsDocument IsDocument(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsDocument(
+ field
+ );
+ }
+
/**
* The
@@ -3551,6 +6028,30 @@ public final class QOM {
@NotNull default IsDocument $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The
+ * Create a condition to check if this field does not contain XML data.
+ */
+ public static final IsNotDocument IsNotDocument() {
+ return new org.jooq.impl.IsNotDocument(
+ null
+ );
+ }
+
+ /**
+ * The
+ * Create a condition to check if this field does not contain XML data.
+ */
+ public static final IsNotDocument IsNotDocument(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsNotDocument(
+ field
+ );
+ }
+
/**
* The
@@ -3569,6 +6070,30 @@ public final class QOM {
@NotNull default IsNotDocument $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The
+ * Create a condition to check if this field contains JSON data.
+ */
+ public static final IsJson IsJson() {
+ return new org.jooq.impl.IsJson(
+ null
+ );
+ }
+
+ /**
+ * The
+ * Create a condition to check if this field contains JSON data.
+ */
+ public static final IsJson IsJson(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsJson(
+ field
+ );
+ }
+
/**
* The
@@ -3587,6 +6112,30 @@ public final class QOM {
@NotNull default IsJson $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The
+ * Create a condition to check if this field does not contain JSON data.
+ */
+ public static final IsNotJson IsNotJson() {
+ return new org.jooq.impl.IsNotJson(
+ null
+ );
+ }
+
+ /**
+ * The
+ * Create a condition to check if this field does not contain JSON data.
+ */
+ public static final IsNotJson IsNotJson(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsNotJson(
+ field
+ );
+ }
+
/**
* The
@@ -3605,6 +6154,32 @@ public final class QOM {
@NotNull default IsNotJson $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The
+ * Provide "EXCLUDED" qualification for a column for use in ON CONFLICT or ON DUPLICATE
+ * KEY UPDATE.
+ */
+ public static final
+ * Provide "EXCLUDED" qualification for a column for use in ON CONFLICT or ON DUPLICATE
+ * KEY UPDATE.
+ */
+ public static final
@@ -3631,6 +6206,70 @@ public final class QOM {
@NotNull default Excluded
+ * Get a
+ * A rowid value describes the physical location of a row on the disk, which
+ * can be used as a replacement for a primary key in some situations -
+ * especially within a query, e.g. to self-join a table:
+ *
+ *
+ * It is not recommended to use
+ * Get a
+ * A rowid value describes the physical location of a row on the disk, which
+ * can be used as a replacement for a primary key in some situations -
+ * especially within a query, e.g. to self-join a table:
+ *
+ *
+ * It is not recommended to use
@@ -3668,6 +6307,26 @@ public final class QOM {
@NotNull default QualifiedRowid $table(Table> newTable) { return $arg1(newTable); }
}
+ /**
+ * The
+ * Count the number of bits set in a number
+ */
+ public static final BitCount BitCount() {
+ return new org.jooq.impl.BitCount(
+ null
+ );
+ }
+
+ /**
+ * The
+ * Count the number of bits set in a number
+ */
+ public static final BitCount BitCount(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.BitCount(
+ value
+ );
+ }
+
/**
* The
@@ -3857,6 +6749,29 @@ public final class QOM {
@NotNull default BitCount $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The TRUNCATE statement.
+ */
+ public static final TRUNCATE statement.
+ */
+ public static final TRUNCATE statement.
*/
@@ -2749,6 +4006,48 @@ public final class QOM {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /**
+ * The START TRANSACTION statement.
+ * START TRANSACTION statement.
* SAVEPOINT statement.
+ * SAVEPOINT statement.
+ * SAVEPOINT statement.
* RELEASE SAVEPOINT statement.
+ * RELEASE SAVEPOINT statement.
+ * RELEASE SAVEPOINT statement.
* COMMIT statement.
+ * COMMIT statement.
* ROLLBACK statement.
+ * ROLLBACK statement.
+ * ROLLBACK statement.
* AND operator.
+ */
+ public static final And And() {
+ return new org.jooq.impl.And(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The AND operator.
+ */
+ public static final And And(
+ Condition arg1,
+ Condition arg2
+ ) {
+ return new org.jooq.impl.And(
+ arg1,
+ arg2
+ );
+ }
+
/**
* The AND operator.
*/
@@ -2834,6 +4245,29 @@ public final class QOM {
// And
{}
+ /**
+ * The EQ operator.
+ */
+ public static final EQ operator.
+ */
+ public static final EQ operator.
*/
@@ -2846,6 +4280,29 @@ public final class QOM {
// TableEq
{}
+ /**
+ * The EQ operator.
+ */
+ public static final EQ operator.
+ */
+ public static final EQ operator.
*/
@@ -2858,6 +4315,29 @@ public final class QOM {
// Eq
{}
+ /**
+ * The EQ operator.
+ */
+ public static final EQ operator.
+ */
+ public static final EQ operator.
*/
@@ -2870,6 +4350,26 @@ public final class QOM {
// EqQuantified
{}
+ /**
+ * The EXISTS function.
+ */
+ public static final Exists Exists() {
+ return new org.jooq.impl.Exists(
+ null
+ );
+ }
+
+ /**
+ * The EXISTS function.
+ */
+ public static final Exists Exists(
+ Select> query
+ ) {
+ return new org.jooq.impl.Exists(
+ query
+ );
+ }
+
/**
* The EXISTS function.
*/
@@ -2885,6 +4385,29 @@ public final class QOM {
@NotNull default Exists $query(Select> newQuery) { return $arg1(newQuery); }
}
+ /**
+ * The GE operator.
+ */
+ public static final GE operator.
+ */
+ public static final GE operator.
*/
@@ -2903,6 +4426,29 @@ public final class QOM {
}
}
+ /**
+ * The GE operator.
+ */
+ public static final GE operator.
+ */
+ public static final GE operator.
*/
@@ -2915,6 +4461,29 @@ public final class QOM {
// GeQuantified
{}
+ /**
+ * The GT operator.
+ */
+ public static final GT operator.
+ */
+ public static final GT operator.
*/
@@ -2933,6 +4502,29 @@ public final class QOM {
}
}
+ /**
+ * The GT operator.
+ */
+ public static final GT operator.
+ */
+ public static final GT operator.
*/
@@ -2945,6 +4537,37 @@ public final class QOM {
// GtQuantified
{}
+ /**
+ * The IN operator.
+ * IN operator.
+ * IN operator.
* IS DISTINCT FROM operator.
+ * IS DISTINCT FROM operator.
+ * IS DISTINCT FROM operator.
* IS NULL operator.
+ */
+ public static final IsNull IsNull() {
+ return new org.jooq.impl.IsNull(
+ null
+ );
+ }
+
+ /**
+ * The IS NULL operator.
+ */
+ public static final IsNull IsNull(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsNull(
+ field
+ );
+ }
+
/**
* The IS NULL operator.
*/
@@ -2989,6 +4661,35 @@ public final class QOM {
@NotNull default IsNull $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The IS NOT DISTINCT FROM operator.
+ * IS NOT DISTINCT FROM operator.
+ * IS NOT DISTINCT FROM operator.
* IS NOT NULL operator.
+ */
+ public static final IsNotNull IsNotNull() {
+ return new org.jooq.impl.IsNotNull(
+ null
+ );
+ }
+
+ /**
+ * The IS NOT NULL operator.
+ */
+ public static final IsNotNull IsNotNull(
+ Field> field
+ ) {
+ return new org.jooq.impl.IsNotNull(
+ field
+ );
+ }
+
/**
* The IS NOT NULL operator.
*/
@@ -3018,6 +4739,29 @@ public final class QOM {
@NotNull default IsNotNull $field(Field> newField) { return $arg1(newField); }
}
+ /**
+ * The LE operator.
+ */
+ public static final LE operator.
+ */
+ public static final LE operator.
*/
@@ -3036,6 +4780,29 @@ public final class QOM {
}
}
+ /**
+ * The LE operator.
+ */
+ public static final LE operator.
+ */
+ public static final LE operator.
*/
@@ -3048,6 +4815,32 @@ public final class QOM {
// LeQuantified
{}
+ /**
+ * The LIKE operator.
+ */
+ public static final Like Like() {
+ return new org.jooq.impl.Like(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The LIKE operator.
+ */
+ public static final Like Like(
+ Field> value,
+ FieldLIKE operator.
*/
@@ -3070,6 +4863,32 @@ public final class QOM {
@NotNull default Like $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The LIKE operator.
+ */
+ public static final LikeQuantified LikeQuantified() {
+ return new org.jooq.impl.LikeQuantified(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The LIKE operator.
+ */
+ public static final LikeQuantified LikeQuantified(
+ Field> value,
+ org.jooq.QuantifiedSelect extends Record1LIKE operator.
*/
@@ -3092,6 +4911,46 @@ public final class QOM {
@NotNull default LikeQuantified $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The LIKE IGNORE CASE operator.
+ * this ilike value in
+ * {@link SQLDialect#POSTGRES}, or to
+ * lower(this) like lower(value) in all other dialects.
+ */
+ public static final LikeIgnoreCase LikeIgnoreCase() {
+ return new org.jooq.impl.LikeIgnoreCase(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The LIKE IGNORE CASE operator.
+ * this ilike value in
+ * {@link SQLDialect#POSTGRES}, or to
+ * lower(this) like lower(value) in all other dialects.
+ */
+ public static final LikeIgnoreCase LikeIgnoreCase(
+ Field> value,
+ FieldLIKE IGNORE CASE operator.
* LT operator.
+ */
+ public static final LT operator.
+ */
+ public static final LT operator.
*/
@@ -3139,6 +5021,29 @@ public final class QOM {
}
}
+ /**
+ * The LT operator.
+ */
+ public static final LT operator.
+ */
+ public static final LT operator.
*/
@@ -3151,6 +5056,29 @@ public final class QOM {
// LtQuantified
{}
+ /**
+ * The NE operator.
+ */
+ public static final NE operator.
+ */
+ public static final NE operator.
*/
@@ -3163,6 +5091,29 @@ public final class QOM {
// TableNe
{}
+ /**
+ * The NE operator.
+ */
+ public static final NE operator.
+ */
+ public static final NE operator.
*/
@@ -3175,6 +5126,29 @@ public final class QOM {
// Ne
{}
+ /**
+ * The NE operator.
+ */
+ public static final NE operator.
+ */
+ public static final NE operator.
*/
@@ -3187,6 +5161,26 @@ public final class QOM {
// NeQuantified
{}
+ /**
+ * The NOT operator.
+ */
+ public static final Not Not() {
+ return new org.jooq.impl.Not(
+ null
+ );
+ }
+
+ /**
+ * The NOT operator.
+ */
+ public static final Not Not(
+ Condition condition
+ ) {
+ return new org.jooq.impl.Not(
+ condition
+ );
+ }
+
/**
* The NOT operator.
*/
@@ -3203,6 +5197,26 @@ public final class QOM {
@NotNull default Not $condition(Condition newCondition) { return $arg1(newCondition); }
}
+ /**
+ * The NOT operator.
+ */
+ public static final NotField NotField() {
+ return new org.jooq.impl.NotField(
+ null
+ );
+ }
+
+ /**
+ * The NOT operator.
+ */
+ public static final NotField NotField(
+ FieldNOT operator.
*/
@@ -3219,6 +5233,45 @@ public final class QOM {
@NotNull default NotField $field(FieldNOT IN operator.
+ * NULL, then the
+ * condition will be NULL (or false, depending on
+ * the dialect) as well. This is standard SQL behaviour.
+ */
+ public static final NOT IN operator.
+ * NULL, then the
+ * condition will be NULL (or false, depending on
+ * the dialect) as well. This is standard SQL behaviour.
+ */
+ public static final NOT IN operator.
* NOT LIKE operator.
+ */
+ public static final NotLike NotLike() {
+ return new org.jooq.impl.NotLike(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The NOT LIKE operator.
+ */
+ public static final NotLike NotLike(
+ Field> value,
+ FieldNOT LIKE operator.
*/
@@ -3260,6 +5339,32 @@ public final class QOM {
@NotNull default NotLike $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The NOT LIKE operator.
+ */
+ public static final NotLikeQuantified NotLikeQuantified() {
+ return new org.jooq.impl.NotLikeQuantified(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The NOT LIKE operator.
+ */
+ public static final NotLikeQuantified NotLikeQuantified(
+ Field> value,
+ org.jooq.QuantifiedSelect extends Record1NOT LIKE operator.
*/
@@ -3282,6 +5387,46 @@ public final class QOM {
@NotNull default NotLikeQuantified $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The NOT LIKE IGNORE CASE operator.
+ * this not ilike value in
+ * {@link SQLDialect#POSTGRES}, or to
+ * lower(this) not like lower(value) in all other dialects.
+ */
+ public static final NotLikeIgnoreCase NotLikeIgnoreCase() {
+ return new org.jooq.impl.NotLikeIgnoreCase(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The NOT LIKE IGNORE CASE operator.
+ * this not ilike value in
+ * {@link SQLDialect#POSTGRES}, or to
+ * lower(this) not like lower(value) in all other dialects.
+ */
+ public static final NotLikeIgnoreCase NotLikeIgnoreCase(
+ Field> value,
+ FieldNOT LIKE IGNORE CASE operator.
* NOT SIMILAR TO operator.
+ */
+ public static final NotSimilarTo NotSimilarTo() {
+ return new org.jooq.impl.NotSimilarTo(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The NOT SIMILAR TO operator.
+ */
+ public static final NotSimilarTo NotSimilarTo(
+ Field> value,
+ FieldNOT SIMILAR TO operator.
*/
@@ -3333,6 +5504,32 @@ public final class QOM {
@NotNull default NotSimilarTo $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The NOT SIMILAR TO operator.
+ */
+ public static final NotSimilarToQuantified NotSimilarToQuantified() {
+ return new org.jooq.impl.NotSimilarToQuantified(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The NOT SIMILAR TO operator.
+ */
+ public static final NotSimilarToQuantified NotSimilarToQuantified(
+ Field> value,
+ org.jooq.QuantifiedSelect extends Record1NOT SIMILAR TO operator.
*/
@@ -3355,6 +5552,29 @@ public final class QOM {
@NotNull default NotSimilarToQuantified $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The OR operator.
+ */
+ public static final Or Or() {
+ return new org.jooq.impl.Or(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The OR operator.
+ */
+ public static final Or Or(
+ Condition arg1,
+ Condition arg2
+ ) {
+ return new org.jooq.impl.Or(
+ arg1,
+ arg2
+ );
+ }
+
/**
* The OR operator.
*/
@@ -3366,6 +5586,32 @@ public final class QOM {
// Or
{}
+ /**
+ * The SIMILAR TO operator.
+ */
+ public static final SimilarTo SimilarTo() {
+ return new org.jooq.impl.SimilarTo(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The SIMILAR TO operator.
+ */
+ public static final SimilarTo SimilarTo(
+ Field> value,
+ FieldSIMILAR TO operator.
*/
@@ -3388,6 +5634,32 @@ public final class QOM {
@NotNull default SimilarTo $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The SIMILAR TO operator.
+ */
+ public static final SimilarToQuantified SimilarToQuantified() {
+ return new org.jooq.impl.SimilarToQuantified(
+ null,
+ null,
+ (char) 0
+ );
+ }
+
+ /**
+ * The SIMILAR TO operator.
+ */
+ public static final SimilarToQuantified SimilarToQuantified(
+ Field> value,
+ org.jooq.QuantifiedSelect extends Record1SIMILAR TO operator.
*/
@@ -3410,6 +5682,26 @@ public final class QOM {
@NotNull default SimilarToQuantified $escape(Character newEscape) { return $arg3(newEscape); }
}
+ /**
+ * The UNIQUE function.
+ */
+ public static final Unique Unique() {
+ return new org.jooq.impl.Unique(
+ null
+ );
+ }
+
+ /**
+ * The UNIQUE function.
+ */
+ public static final Unique Unique(
+ Select> query
+ ) {
+ return new org.jooq.impl.Unique(
+ query
+ );
+ }
+
/**
* The UNIQUE function.
*/
@@ -3425,6 +5717,29 @@ public final class QOM {
@NotNull default Unique $query(Select> newQuery) { return $arg1(newQuery); }
}
+ /**
+ * The XOR operator.
+ */
+ public static final Xor Xor() {
+ return new org.jooq.impl.Xor(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The XOR operator.
+ */
+ public static final Xor Xor(
+ Condition arg1,
+ Condition arg2
+ ) {
+ return new org.jooq.impl.Xor(
+ arg1,
+ arg2
+ );
+ }
+
/**
* The XOR operator.
*/
@@ -3437,6 +5752,29 @@ public final class QOM {
// Xor
{}
+ /**
+ * The ROW EQ operator.
+ */
+ public static final ROW EQ operator.
+ */
+ public static final ROW EQ operator.
*/
@@ -3449,6 +5787,29 @@ public final class QOM {
// RowEq
{}
+ /**
+ * The ROW NE operator.
+ */
+ public static final ROW NE operator.
+ */
+ public static final ROW NE operator.
*/
@@ -3461,6 +5822,29 @@ public final class QOM {
// RowNe
{}
+ /**
+ * The ROW GT operator.
+ */
+ public static final ROW GT operator.
+ */
+ public static final ROW GT operator.
*/
@@ -3479,6 +5863,29 @@ public final class QOM {
}
}
+ /**
+ * The ROW GE operator.
+ */
+ public static final ROW GE operator.
+ */
+ public static final ROW GE operator.
*/
@@ -3497,6 +5904,29 @@ public final class QOM {
}
}
+ /**
+ * The ROW LT operator.
+ */
+ public static final ROW LT operator.
+ */
+ public static final ROW LT operator.
*/
@@ -3515,6 +5945,29 @@ public final class QOM {
}
}
+ /**
+ * The ROW LE operator.
+ */
+ public static final ROW LE operator.
+ */
+ public static final ROW LE operator.
*/
@@ -3533,6 +5986,30 @@ public final class QOM {
}
}
+ /**
+ * The IS DOCUMENT operator.
+ * IS DOCUMENT operator.
+ * IS DOCUMENT operator.
* IS NOT DOCUMENT operator.
+ * IS NOT DOCUMENT operator.
+ * IS NOT DOCUMENT operator.
* IS JSON operator.
+ * IS JSON operator.
+ * IS JSON operator.
* IS NOT JSON operator.
+ * IS NOT JSON operator.
+ * IS NOT JSON operator.
* EXCLUDED function.
+ * EXCLUDED function.
+ * EXCLUDED function.
* ROWID operator.
+ * table.rowid reference from this table.
+ *
+ *
+ * -- Emulating this MySQL statement...
+ * DELETE FROM x ORDER BY x.y LIMIT 1
+ *
+ * -- ... in other databases
+ * DELETE FROM x
+ * WHERE x.rowid IN (
+ * SELECT x.rowid FROM x ORDER BY x.a LIMIT 1
+ * )
+ * rowid values in client
+ * applications as actual row identifiers as the database system may move a
+ * row to a different physical location at any time, thus changing the rowid
+ * value. In general, use primary keys, instead.
+ */
+ public static final QualifiedRowid QualifiedRowid() {
+ return new org.jooq.impl.QualifiedRowid(
+ null
+ );
+ }
+
+ /**
+ * The ROWID operator.
+ * table.rowid reference from this table.
+ *
+ *
+ * -- Emulating this MySQL statement...
+ * DELETE FROM x ORDER BY x.y LIMIT 1
+ *
+ * -- ... in other databases
+ * DELETE FROM x
+ * WHERE x.rowid IN (
+ * SELECT x.rowid FROM x ORDER BY x.a LIMIT 1
+ * )
+ * rowid values in client
+ * applications as actual row identifiers as the database system may move a
+ * row to a different physical location at any time, thus changing the rowid
+ * value. In general, use primary keys, instead.
+ */
+ public static final QualifiedRowid QualifiedRowid(
+ Table> table
+ ) {
+ return new org.jooq.impl.QualifiedRowid(
+ table
+ );
+ }
+
/**
* The ROWID operator.
* ABS function.
+ */
+ public static final ABS function.
+ */
+ public static final ABS function.
*/
@@ -3684,6 +6343,26 @@ public final class QOM {
@NotNull default AbsACOS function.
+ */
+ public static final Acos Acos() {
+ return new org.jooq.impl.Acos(
+ null
+ );
+ }
+
+ /**
+ * The ACOS function.
+ */
+ public static final Acos Acos(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Acos(
+ value
+ );
+ }
+
/**
* The ACOS function.
*/
@@ -3700,6 +6379,26 @@ public final class QOM {
@NotNull default Acos $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ACOSH function.
+ */
+ public static final Acosh Acosh() {
+ return new org.jooq.impl.Acosh(
+ null
+ );
+ }
+
+ /**
+ * The ACOSH function.
+ */
+ public static final Acosh Acosh(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Acosh(
+ value
+ );
+ }
+
/**
* The ACOSH function.
*/
@@ -3716,6 +6415,26 @@ public final class QOM {
@NotNull default Acosh $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ACOTH function.
+ */
+ public static final Acoth Acoth() {
+ return new org.jooq.impl.Acoth(
+ null
+ );
+ }
+
+ /**
+ * The ACOTH function.
+ */
+ public static final Acoth Acoth(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Acoth(
+ value
+ );
+ }
+
/**
* The ACOTH function.
*/
@@ -3732,6 +6451,29 @@ public final class QOM {
@NotNull default Acoth $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ADD operator.
+ */
+ public static final ADD operator.
+ */
+ public static final ADD operator.
*/
@@ -3744,6 +6486,26 @@ public final class QOM {
// Add
{}
+ /**
+ * The ASIN function.
+ */
+ public static final Asin Asin() {
+ return new org.jooq.impl.Asin(
+ null
+ );
+ }
+
+ /**
+ * The ASIN function.
+ */
+ public static final Asin Asin(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Asin(
+ value
+ );
+ }
+
/**
* The ASIN function.
*/
@@ -3760,6 +6522,26 @@ public final class QOM {
@NotNull default Asin $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ASINH function.
+ */
+ public static final Asinh Asinh() {
+ return new org.jooq.impl.Asinh(
+ null
+ );
+ }
+
+ /**
+ * The ASINH function.
+ */
+ public static final Asinh Asinh(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Asinh(
+ value
+ );
+ }
+
/**
* The ASINH function.
*/
@@ -3776,6 +6558,26 @@ public final class QOM {
@NotNull default Asinh $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ATAN function.
+ */
+ public static final Atan Atan() {
+ return new org.jooq.impl.Atan(
+ null
+ );
+ }
+
+ /**
+ * The ATAN function.
+ */
+ public static final Atan Atan(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Atan(
+ value
+ );
+ }
+
/**
* The ATAN function.
*/
@@ -3792,6 +6594,29 @@ public final class QOM {
@NotNull default Atan $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The ATAN2 function.
+ */
+ public static final Atan2 Atan2() {
+ return new org.jooq.impl.Atan2(
+ null,
+ null
+ );
+ }
+
+ /**
+ * The ATAN2 function.
+ */
+ public static final Atan2 Atan2(
+ Field extends Number> x,
+ Field extends Number> y
+ ) {
+ return new org.jooq.impl.Atan2(
+ x,
+ y
+ );
+ }
+
/**
* The ATAN2 function.
*/
@@ -3811,6 +6636,26 @@ public final class QOM {
@NotNull default Atan2 $y(Field extends Number> newY) { return $arg2(newY); }
}
+ /**
+ * The ATANH function.
+ */
+ public static final Atanh Atanh() {
+ return new org.jooq.impl.Atanh(
+ null
+ );
+ }
+
+ /**
+ * The ATANH function.
+ */
+ public static final Atanh Atanh(
+ Field extends Number> value
+ ) {
+ return new org.jooq.impl.Atanh(
+ value
+ );
+ }
+
/**
* The ATANH function.
*/
@@ -3827,6 +6672,29 @@ public final class QOM {
@NotNull default Atanh $value(Field extends Number> newValue) { return $arg1(newValue); }
}
+ /**
+ * The BIT AND operator.
+ */
+ public static final BIT AND operator.
+ */
+ public static final BIT AND operator.
*/
@@ -3839,6 +6707,30 @@ public final class QOM {
// BitAnd
{}
+ /**
+ * The BIT COUNT function.
+ * BIT COUNT function.
+ * BIT COUNT function.
* BIT GET function.
+ */
+ public static final BIT GET function.
+ */
+ public static final BIT GET function.
*/
@@ -3876,6 +6791,29 @@ public final class QOM {
@NotNull default BitGetBIT NAND operator.
+ */
+ public static final BIT NAND operator.
+ */
+ public static final BIT NAND operator.
*/
@@ -3888,6 +6826,29 @@ public final class QOM {
// BitNand
{}
+ /**
+ * The BIT NOR operator.
+ */
+ public static final BIT NOR operator.
+ */
+ public static final BIT NOR operator.
*/
@@ -3900,6 +6861,26 @@ public final class QOM {
// BitNor
{}
+ /**
+ * The BIT NOT operator.
+ */
+ public static final BIT NOT operator.
+ */
+ public static final BIT NOT operator.
*/
@@ -3912,6 +6893,29 @@ public final class QOM {
// BitNot
{}
+ /**
+ * The BIT OR operator.
+ */
+ public static final