Re-generated code

This commit is contained in:
Data Geekery CI Bot 2024-01-09 05:34:34 +01:00
parent 00070175ef
commit f5bb5c0e50
4 changed files with 16 additions and 16 deletions

View File

@ -107,7 +107,7 @@ open class Author(
private constructor(alias: Name, aliased: Table<AuthorRecord>?): this(alias, null, null, null, aliased, null, null)
private constructor(alias: Name, aliased: Table<AuthorRecord>?, parameters: Array<Field<*>?>?): this(alias, null, null, null, aliased, parameters, null)
private constructor(alias: Name, aliased: Table<AuthorRecord>?, where: Condition): this(alias, null, null, null, aliased, null, where)
private constructor(alias: Name, aliased: Table<AuthorRecord>?, where: Condition?): this(alias, null, null, null, aliased, null, where)
/**
* Create an aliased <code>PUBLIC.AUTHOR</code> table reference
@ -193,7 +193,7 @@ open class Author(
/**
* Create an inline derived table from this table
*/
override fun where(condition: Condition): Author = Author(qualifiedName, if (aliased()) this else null, condition)
override fun where(condition: Condition?): Author = Author(qualifiedName, if (aliased()) this else null, condition)
/**
* Create an inline derived table from this table
@ -203,12 +203,12 @@ open class Author(
/**
* Create an inline derived table from this table
*/
override fun where(vararg conditions: Condition): Author = where(DSL.and(*conditions))
override fun where(vararg conditions: Condition?): Author = where(DSL.and(*conditions))
/**
* Create an inline derived table from this table
*/
override fun where(condition: Field<Boolean?>): Author = where(DSL.condition(condition))
override fun where(condition: Field<Boolean?>?): Author = where(DSL.condition(condition))
/**
* Create an inline derived table from this table

View File

@ -136,7 +136,7 @@ open class Book(
private constructor(alias: Name, aliased: Table<BookRecord>?): this(alias, null, null, null, aliased, null, null)
private constructor(alias: Name, aliased: Table<BookRecord>?, parameters: Array<Field<*>?>?): this(alias, null, null, null, aliased, parameters, null)
private constructor(alias: Name, aliased: Table<BookRecord>?, where: Condition): this(alias, null, null, null, aliased, null, where)
private constructor(alias: Name, aliased: Table<BookRecord>?, where: Condition?): this(alias, null, null, null, aliased, null, where)
/**
* Create an aliased <code>PUBLIC.BOOK</code> table reference
@ -246,7 +246,7 @@ open class Book(
/**
* Create an inline derived table from this table
*/
override fun where(condition: Condition): Book = Book(qualifiedName, if (aliased()) this else null, condition)
override fun where(condition: Condition?): Book = Book(qualifiedName, if (aliased()) this else null, condition)
/**
* Create an inline derived table from this table
@ -256,12 +256,12 @@ open class Book(
/**
* Create an inline derived table from this table
*/
override fun where(vararg conditions: Condition): Book = where(DSL.and(*conditions))
override fun where(vararg conditions: Condition?): Book = where(DSL.and(*conditions))
/**
* Create an inline derived table from this table
*/
override fun where(condition: Field<Boolean?>): Book = where(DSL.condition(condition))
override fun where(condition: Field<Boolean?>?): Book = where(DSL.condition(condition))
/**
* Create an inline derived table from this table

View File

@ -79,7 +79,7 @@ open class BookStore(
private constructor(alias: Name, aliased: Table<BookStoreRecord>?): this(alias, null, null, null, aliased, null, null)
private constructor(alias: Name, aliased: Table<BookStoreRecord>?, parameters: Array<Field<*>?>?): this(alias, null, null, null, aliased, parameters, null)
private constructor(alias: Name, aliased: Table<BookStoreRecord>?, where: Condition): this(alias, null, null, null, aliased, null, where)
private constructor(alias: Name, aliased: Table<BookStoreRecord>?, where: Condition?): this(alias, null, null, null, aliased, null, where)
/**
* Create an aliased <code>PUBLIC.BOOK_STORE</code> table reference
@ -155,7 +155,7 @@ open class BookStore(
/**
* Create an inline derived table from this table
*/
override fun where(condition: Condition): BookStore = BookStore(qualifiedName, if (aliased()) this else null, condition)
override fun where(condition: Condition?): BookStore = BookStore(qualifiedName, if (aliased()) this else null, condition)
/**
* Create an inline derived table from this table
@ -165,12 +165,12 @@ open class BookStore(
/**
* Create an inline derived table from this table
*/
override fun where(vararg conditions: Condition): BookStore = where(DSL.and(*conditions))
override fun where(vararg conditions: Condition?): BookStore = where(DSL.and(*conditions))
/**
* Create an inline derived table from this table
*/
override fun where(condition: Field<Boolean?>): BookStore = where(DSL.condition(condition))
override fun where(condition: Field<Boolean?>?): BookStore = where(DSL.condition(condition))
/**
* Create an inline derived table from this table

View File

@ -91,7 +91,7 @@ open class BookToBookStore(
private constructor(alias: Name, aliased: Table<BookToBookStoreRecord>?): this(alias, null, null, null, aliased, null, null)
private constructor(alias: Name, aliased: Table<BookToBookStoreRecord>?, parameters: Array<Field<*>?>?): this(alias, null, null, null, aliased, parameters, null)
private constructor(alias: Name, aliased: Table<BookToBookStoreRecord>?, where: Condition): this(alias, null, null, null, aliased, null, where)
private constructor(alias: Name, aliased: Table<BookToBookStoreRecord>?, where: Condition?): this(alias, null, null, null, aliased, null, where)
/**
* Create an aliased <code>PUBLIC.BOOK_TO_BOOK_STORE</code> table reference
@ -175,7 +175,7 @@ open class BookToBookStore(
/**
* Create an inline derived table from this table
*/
override fun where(condition: Condition): BookToBookStore = BookToBookStore(qualifiedName, if (aliased()) this else null, condition)
override fun where(condition: Condition?): BookToBookStore = BookToBookStore(qualifiedName, if (aliased()) this else null, condition)
/**
* Create an inline derived table from this table
@ -185,12 +185,12 @@ open class BookToBookStore(
/**
* Create an inline derived table from this table
*/
override fun where(vararg conditions: Condition): BookToBookStore = where(DSL.and(*conditions))
override fun where(vararg conditions: Condition?): BookToBookStore = where(DSL.and(*conditions))
/**
* Create an inline derived table from this table
*/
override fun where(condition: Field<Boolean?>): BookToBookStore = where(DSL.condition(condition))
override fun where(condition: Field<Boolean?>?): BookToBookStore = where(DSL.condition(condition))
/**
* Create an inline derived table from this table