-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull WithStep
as(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a subselect with a common table expression's table and column names.@NotNull WithStep
asMaterialized(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a materialized subselect with a common table expression's table and column names.@NotNull WithStep
asNotMaterialized(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a non-materialized subselect with a common table expression's table and column names.
-
-
-
Method Detail
-
as
@NotNull @CheckReturnValue @Support({FIREBIRD,H2,HSQLDB,IGNITE,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WithStep as(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a subselect with a common table expression's table and column names.
-
asMaterialized
@NotNull @CheckReturnValue @Support({FIREBIRD,H2,HSQLDB,IGNITE,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WithStep asMaterialized(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a materialized subselect with a common table expression's table and column names.This adds the PostgreSQL 12
MATERIALIZED
hint to the common table expression definition, or silently ignores it, if the hint is not supported.
-
asNotMaterialized
@NotNull @CheckReturnValue @Support({FIREBIRD,H2,HSQLDB,IGNITE,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WithStep asNotMaterialized(ResultQuery<? extends Record7<?,?,?,?,?,?,?>> query)
Associate a non-materialized subselect with a common table expression's table and column names.This adds the PostgreSQL 12
NOT MATERIALIZED
hint to the common table expression definition, or silently ignores it, if the hint is not supported.
-
-