Re-generated code

This commit is contained in:
Data Geekery CI Bot 2024-05-24 19:42:21 +02:00
parent 60a9153cb2
commit d45c5ecbd6
71 changed files with 714 additions and 0 deletions

View File

@ -6,10 +6,13 @@ package org.jooq.example.flyway.ddl.db.h2.tables;
import java.time.LocalDate;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -208,6 +211,13 @@ public class Author extends TableImpl<AuthorRecord> {
return new Author(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Author, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -7,10 +7,13 @@ package org.jooq.example.flyway.ddl.db.h2.tables;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -198,6 +201,13 @@ public class Book extends TableImpl<BookRecord> {
return new Book(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Book, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,10 +5,13 @@ package org.jooq.example.jpa.jooq.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -201,6 +204,13 @@ public class Actor extends TableImpl<ActorRecord> {
return new Actor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Actor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.Year;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -251,6 +254,13 @@ public class Film extends TableImpl<FilmRecord> {
return new Film(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Film, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -7,10 +7,13 @@ package org.jooq.example.jpa.jooq.tables;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -206,6 +209,13 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
return new FilmActor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmActor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,10 +5,13 @@ package org.jooq.example.jpa.jooq.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -200,6 +203,13 @@ public class Language extends TableImpl<LanguageRecord> {
return new Language(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Language, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,10 +5,13 @@ package org.jooq.example.r2dbc.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -198,6 +201,13 @@ public class Author extends TableImpl<AuthorRecord> {
return new Author(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Author, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -7,10 +7,13 @@ package org.jooq.example.r2dbc.db.tables;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -205,6 +208,13 @@ public class Book extends TableImpl<BookRecord> {
return new Book(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Book, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -222,6 +225,13 @@ public class Actor extends TableImpl<ActorRecord> {
return new Actor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Actor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -154,6 +157,13 @@ public class ActorInfo extends TableImpl<ActorInfoRecord> {
return new ActorInfo(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super ActorInfo, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -277,6 +280,13 @@ public class Address extends TableImpl<AddressRecord> {
return new Address(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Address, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainers.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -208,6 +211,13 @@ public class Category extends TableImpl<CategoryRecord> {
return new Category(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Category, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -231,6 +234,13 @@ public class City extends TableImpl<CityRecord> {
return new City(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super City, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainers.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -198,6 +201,13 @@ public class Country extends TableImpl<CountryRecord> {
return new Country(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Country, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -373,6 +376,13 @@ public class Customer extends TableImpl<CustomerRecord> {
return new Customer(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Customer, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -181,6 +184,13 @@ public class CustomerList extends TableImpl<CustomerListRecord> {
return new CustomerList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super CustomerList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -351,6 +354,13 @@ public class Film extends TableImpl<FilmRecord> {
return new Film(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Film, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -219,6 +222,13 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
return new FilmActor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmActor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -212,6 +215,13 @@ public class FilmCategory extends TableImpl<FilmCategoryRecord> {
return new FilmCategory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmCategory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -4,8 +4,12 @@
package org.jooq.example.testcontainers.db.tables;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.Schema;
import org.jooq.Table;
@ -124,6 +128,13 @@ public class FilmInStock extends TableImpl<FilmInStockRecord> {
return new FilmInStock(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmInStock, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -176,6 +179,13 @@ public class FilmList extends TableImpl<FilmListRecord> {
return new FilmList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -4,8 +4,12 @@
package org.jooq.example.testcontainers.db.tables;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.Schema;
import org.jooq.Table;
@ -124,6 +128,13 @@ public class FilmNotInStock extends TableImpl<FilmNotInStockRecord> {
return new FilmNotInStock(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmNotInStock, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -244,6 +247,13 @@ public class Inventory extends TableImpl<InventoryRecord> {
return new Inventory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Inventory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainers.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -212,6 +215,13 @@ public class Language extends TableImpl<LanguageRecord> {
return new Language(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Language, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -178,6 +181,13 @@ public class NicerButSlowerFilmList extends TableImpl<NicerButSlowerFilmListReco
return new NicerButSlowerFilmList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super NicerButSlowerFilmList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -254,6 +257,13 @@ public class Payment extends TableImpl<PaymentRecord> {
return new Payment(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Payment, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_01 extends TableImpl<PaymentP2007_01Record> {
return new PaymentP2007_01(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_01, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_02 extends TableImpl<PaymentP2007_02Record> {
return new PaymentP2007_02(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_02, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_03 extends TableImpl<PaymentP2007_03Record> {
return new PaymentP2007_03(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_03, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_04 extends TableImpl<PaymentP2007_04Record> {
return new PaymentP2007_04(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_04, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_05 extends TableImpl<PaymentP2007_05Record> {
return new PaymentP2007_05(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_05, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_06 extends TableImpl<PaymentP2007_06Record> {
return new PaymentP2007_06(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_06, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -356,6 +359,13 @@ public class Rental extends TableImpl<RentalRecord> {
return new Rental(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Rental, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -7,9 +7,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.Schema;
@ -179,6 +182,13 @@ public class RewardsReport extends TableImpl<CustomerRecord> {
return new RewardsReport(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super RewardsReport, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -143,6 +146,13 @@ public class SalesByFilmCategory extends TableImpl<SalesByFilmCategoryRecord> {
return new SalesByFilmCategory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super SalesByFilmCategory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -149,6 +152,13 @@ public class SalesByStore extends TableImpl<SalesByStoreRecord> {
return new SalesByStore(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super SalesByStore, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -370,6 +373,13 @@ public class Staff extends TableImpl<StaffRecord> {
return new Staff(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Staff, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainers.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -172,6 +175,13 @@ public class StaffList extends TableImpl<StaffListRecord> {
return new StaffList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super StaffList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -258,6 +261,13 @@ public class Store extends TableImpl<StoreRecord> {
return new Store(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Store, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -222,6 +225,13 @@ public class Actor extends TableImpl<ActorRecord> {
return new Actor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Actor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -154,6 +157,13 @@ public class ActorInfo extends TableImpl<ActorInfoRecord> {
return new ActorInfo(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super ActorInfo, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -277,6 +280,13 @@ public class Address extends TableImpl<AddressRecord> {
return new Address(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Address, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -208,6 +211,13 @@ public class Category extends TableImpl<CategoryRecord> {
return new Category(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Category, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -231,6 +234,13 @@ public class City extends TableImpl<CityRecord> {
return new City(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super City, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -198,6 +201,13 @@ public class Country extends TableImpl<CountryRecord> {
return new Country(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Country, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -373,6 +376,13 @@ public class Customer extends TableImpl<CustomerRecord> {
return new Customer(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Customer, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -181,6 +184,13 @@ public class CustomerList extends TableImpl<CustomerListRecord> {
return new CustomerList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super CustomerList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -351,6 +354,13 @@ public class Film extends TableImpl<FilmRecord> {
return new Film(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Film, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -219,6 +222,13 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
return new FilmActor(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmActor, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
@ -212,6 +215,13 @@ public class FilmCategory extends TableImpl<FilmCategoryRecord> {
return new FilmCategory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmCategory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -4,8 +4,12 @@
package org.jooq.example.testcontainersflyway.db.tables;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.Schema;
import org.jooq.Table;
@ -124,6 +128,13 @@ public class FilmInStock extends TableImpl<FilmInStockRecord> {
return new FilmInStock(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmInStock, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -176,6 +179,13 @@ public class FilmList extends TableImpl<FilmListRecord> {
return new FilmList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -4,8 +4,12 @@
package org.jooq.example.testcontainersflyway.db.tables;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.Schema;
import org.jooq.Table;
@ -124,6 +128,13 @@ public class FilmNotInStock extends TableImpl<FilmNotInStockRecord> {
return new FilmNotInStock(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FilmNotInStock, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -8,9 +8,12 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Index;
import org.jooq.Name;
import org.jooq.PlainSQL;
@ -188,6 +191,13 @@ public class FlywaySchemaHistory extends TableImpl<FlywaySchemaHistoryRecord> {
return new FlywaySchemaHistory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super FlywaySchemaHistory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -244,6 +247,13 @@ public class Inventory extends TableImpl<InventoryRecord> {
return new Inventory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Inventory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,10 +6,13 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -212,6 +215,13 @@ public class Language extends TableImpl<LanguageRecord> {
return new Language(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Language, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -178,6 +181,13 @@ public class NicerButSlowerFilmList extends TableImpl<NicerButSlowerFilmListReco
return new NicerButSlowerFilmList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super NicerButSlowerFilmList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,10 +9,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -254,6 +257,13 @@ public class Payment extends TableImpl<PaymentRecord> {
return new Payment(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Payment, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_01 extends TableImpl<PaymentP2007_01Record> {
return new PaymentP2007_01(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_01, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_02 extends TableImpl<PaymentP2007_02Record> {
return new PaymentP2007_02(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_02, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_03 extends TableImpl<PaymentP2007_03Record> {
return new PaymentP2007_03(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_03, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_04 extends TableImpl<PaymentP2007_04Record> {
return new PaymentP2007_04(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_04, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_05 extends TableImpl<PaymentP2007_05Record> {
return new PaymentP2007_05(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_05, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -9,11 +9,14 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Check;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -257,6 +260,13 @@ public class PaymentP2007_06 extends TableImpl<PaymentP2007_06Record> {
return new PaymentP2007_06(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super PaymentP2007_06, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -356,6 +359,13 @@ public class Rental extends TableImpl<RentalRecord> {
return new Rental(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Rental, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -7,9 +7,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.Schema;
@ -179,6 +182,13 @@ public class RewardsReport extends TableImpl<CustomerRecord> {
return new RewardsReport(name.getQualifiedName(), null, parameters);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super RewardsReport, ? extends R> function) {
return function.apply(this);
}
/**
* Call this table-valued function
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -143,6 +146,13 @@ public class SalesByFilmCategory extends TableImpl<SalesByFilmCategoryRecord> {
return new SalesByFilmCategory(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super SalesByFilmCategory, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -6,9 +6,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -149,6 +152,13 @@ public class SalesByStore extends TableImpl<SalesByStoreRecord> {
return new SalesByStore(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super SalesByStore, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
@ -370,6 +373,13 @@ public class Staff extends TableImpl<StaffRecord> {
return new Staff(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Staff, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -5,9 +5,12 @@ package org.jooq.example.testcontainersflyway.db.tables;
import java.util.Collection;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
@ -172,6 +175,13 @@ public class StaffList extends TableImpl<StaffListRecord> {
return new StaffList(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super StaffList, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/

View File

@ -8,10 +8,13 @@ import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Function1;
import org.jooq.Functions;
import org.jooq.Identity;
import org.jooq.Index;
import org.jooq.InverseForeignKey;
@ -258,6 +261,13 @@ public class Store extends TableImpl<StoreRecord> {
return new Store(name.getQualifiedName(), null);
}
/**
* Apply this table to a function, see also {@link Functions#let(Function1)}
*/
public <R> R let(Function<? super Store, ? extends R> function) {
return function.apply(this);
}
/**
* Create an inline derived table from this table
*/