Re-generated code

This commit is contained in:
Data Geekery CI Bot 2023-06-26 12:37:12 +02:00
parent b702548040
commit 123bec708c
6 changed files with 10 additions and 8 deletions

View File

@ -46,6 +46,7 @@ import org.jooq.example.testcontainers.db.tables.Inventory.InventoryPath;
import org.jooq.example.testcontainers.db.tables.Language.LanguagePath;
import org.jooq.example.testcontainers.db.tables.records.FilmRecord;
import org.jooq.impl.DSL;
import org.jooq.impl.DefaultDataType;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
@ -124,7 +125,7 @@ public class Film extends TableImpl<FilmRecord> {
/**
* The column <code>public.film.rating</code>.
*/
public final TableField<FilmRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.defaultValue(DSL.field(DSL.raw("'G'::mpaa_rating"), SQLDataType.VARCHAR)).asEnumDataType(org.jooq.example.testcontainers.db.enums.MpaaRating.class), this, "");
public final TableField<FilmRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.defaultValue(DSL.field(DSL.raw("'G'::mpaa_rating"), SQLDataType.VARCHAR)).asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.film.last_update</code>.
@ -145,7 +146,7 @@ public class Film extends TableImpl<FilmRecord> {
* configuration.
*/
@Deprecated
public final TableField<FilmRecord, Object> FULLTEXT = createField(DSL.name("fulltext"), org.jooq.impl.DefaultDataType.getDefaultDataType("\"pg_catalog\".\"tsvector\"").nullable(false), this, "");
public final TableField<FilmRecord, Object> FULLTEXT = createField(DSL.name("fulltext"), DefaultDataType.getDefaultDataType("\"pg_catalog\".\"tsvector\"").nullable(false), this, "");
private Film(Name alias, Table<FilmRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);

View File

@ -86,7 +86,7 @@ public class FilmList extends TableImpl<FilmListRecord> {
/**
* The column <code>public.film_list.rating</code>.
*/
public final TableField<FilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(org.jooq.example.testcontainers.db.enums.MpaaRating.class), this, "");
public final TableField<FilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.film_list.actors</code>.

View File

@ -86,7 +86,7 @@ public class NicerButSlowerFilmList extends TableImpl<NicerButSlowerFilmListReco
/**
* The column <code>public.nicer_but_slower_film_list.rating</code>.
*/
public final TableField<NicerButSlowerFilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(org.jooq.example.testcontainers.db.enums.MpaaRating.class), this, "");
public final TableField<NicerButSlowerFilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.nicer_but_slower_film_list.actors</code>.

View File

@ -46,6 +46,7 @@ import org.jooq.example.testcontainersflyway.db.tables.Inventory.InventoryPath;
import org.jooq.example.testcontainersflyway.db.tables.Language.LanguagePath;
import org.jooq.example.testcontainersflyway.db.tables.records.FilmRecord;
import org.jooq.impl.DSL;
import org.jooq.impl.DefaultDataType;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
@ -124,7 +125,7 @@ public class Film extends TableImpl<FilmRecord> {
/**
* The column <code>public.film.rating</code>.
*/
public final TableField<FilmRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.defaultValue(DSL.field(DSL.raw("'G'::mpaa_rating"), SQLDataType.VARCHAR)).asEnumDataType(org.jooq.example.testcontainersflyway.db.enums.MpaaRating.class), this, "");
public final TableField<FilmRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.defaultValue(DSL.field(DSL.raw("'G'::mpaa_rating"), SQLDataType.VARCHAR)).asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.film.last_update</code>.
@ -145,7 +146,7 @@ public class Film extends TableImpl<FilmRecord> {
* configuration.
*/
@Deprecated
public final TableField<FilmRecord, Object> FULLTEXT = createField(DSL.name("fulltext"), org.jooq.impl.DefaultDataType.getDefaultDataType("\"pg_catalog\".\"tsvector\"").nullable(false), this, "");
public final TableField<FilmRecord, Object> FULLTEXT = createField(DSL.name("fulltext"), DefaultDataType.getDefaultDataType("\"pg_catalog\".\"tsvector\"").nullable(false), this, "");
private Film(Name alias, Table<FilmRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);

View File

@ -86,7 +86,7 @@ public class FilmList extends TableImpl<FilmListRecord> {
/**
* The column <code>public.film_list.rating</code>.
*/
public final TableField<FilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(org.jooq.example.testcontainersflyway.db.enums.MpaaRating.class), this, "");
public final TableField<FilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.film_list.actors</code>.

View File

@ -86,7 +86,7 @@ public class NicerButSlowerFilmList extends TableImpl<NicerButSlowerFilmListReco
/**
* The column <code>public.nicer_but_slower_film_list.rating</code>.
*/
public final TableField<NicerButSlowerFilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(org.jooq.example.testcontainersflyway.db.enums.MpaaRating.class), this, "");
public final TableField<NicerButSlowerFilmListRecord, MpaaRating> RATING = createField(DSL.name("rating"), SQLDataType.VARCHAR.asEnumDataType(MpaaRating.class), this, "");
/**
* The column <code>public.nicer_but_slower_film_list.actors</code>.