From f5bb5c0e50f01e398b2c1808e713b7e007dcc0e0 Mon Sep 17 00:00:00 2001 From: Data Geekery CI Bot Date: Tue, 9 Jan 2024 05:34:34 +0100 Subject: [PATCH] Re-generated code --- .../kotlin/org/jooq/example/kotlin/db/h2/tables/Author.kt | 8 ++++---- .../kotlin/org/jooq/example/kotlin/db/h2/tables/Book.kt | 8 ++++---- .../org/jooq/example/kotlin/db/h2/tables/BookStore.kt | 8 ++++---- .../jooq/example/kotlin/db/h2/tables/BookToBookStore.kt | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Author.kt b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Author.kt index 79da6d201a..6ea6dc5e18 100644 --- a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Author.kt +++ b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Author.kt @@ -107,7 +107,7 @@ open class Author( private constructor(alias: Name, aliased: Table?): this(alias, null, null, null, aliased, null, null) private constructor(alias: Name, aliased: Table?, parameters: Array?>?): this(alias, null, null, null, aliased, parameters, null) - private constructor(alias: Name, aliased: Table?, where: Condition): this(alias, null, null, null, aliased, null, where) + private constructor(alias: Name, aliased: Table?, where: Condition?): this(alias, null, null, null, aliased, null, where) /** * Create an aliased PUBLIC.AUTHOR 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): Author = where(DSL.condition(condition)) + override fun where(condition: Field?): Author = where(DSL.condition(condition)) /** * Create an inline derived table from this table diff --git a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Book.kt b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Book.kt index dc89a7a2a0..986f540400 100644 --- a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Book.kt +++ b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/Book.kt @@ -136,7 +136,7 @@ open class Book( private constructor(alias: Name, aliased: Table?): this(alias, null, null, null, aliased, null, null) private constructor(alias: Name, aliased: Table?, parameters: Array?>?): this(alias, null, null, null, aliased, parameters, null) - private constructor(alias: Name, aliased: Table?, where: Condition): this(alias, null, null, null, aliased, null, where) + private constructor(alias: Name, aliased: Table?, where: Condition?): this(alias, null, null, null, aliased, null, where) /** * Create an aliased PUBLIC.BOOK 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): Book = where(DSL.condition(condition)) + override fun where(condition: Field?): Book = where(DSL.condition(condition)) /** * Create an inline derived table from this table diff --git a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookStore.kt b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookStore.kt index ac202980a3..83108d5247 100644 --- a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookStore.kt +++ b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookStore.kt @@ -79,7 +79,7 @@ open class BookStore( private constructor(alias: Name, aliased: Table?): this(alias, null, null, null, aliased, null, null) private constructor(alias: Name, aliased: Table?, parameters: Array?>?): this(alias, null, null, null, aliased, parameters, null) - private constructor(alias: Name, aliased: Table?, where: Condition): this(alias, null, null, null, aliased, null, where) + private constructor(alias: Name, aliased: Table?, where: Condition?): this(alias, null, null, null, aliased, null, where) /** * Create an aliased PUBLIC.BOOK_STORE 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): BookStore = where(DSL.condition(condition)) + override fun where(condition: Field?): BookStore = where(DSL.condition(condition)) /** * Create an inline derived table from this table diff --git a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookToBookStore.kt b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookToBookStore.kt index a1924fb36a..137daca5a3 100644 --- a/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookToBookStore.kt +++ b/jOOQ-examples/jOOQ-kotlin-example/src/main/kotlin/org/jooq/example/kotlin/db/h2/tables/BookToBookStore.kt @@ -91,7 +91,7 @@ open class BookToBookStore( private constructor(alias: Name, aliased: Table?): this(alias, null, null, null, aliased, null, null) private constructor(alias: Name, aliased: Table?, parameters: Array?>?): this(alias, null, null, null, aliased, parameters, null) - private constructor(alias: Name, aliased: Table?, where: Condition): this(alias, null, null, null, aliased, null, where) + private constructor(alias: Name, aliased: Table?, where: Condition?): this(alias, null, null, null, aliased, null, where) /** * Create an aliased PUBLIC.BOOK_TO_BOOK_STORE 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): BookToBookStore = where(DSL.condition(condition)) + override fun where(condition: Field?): BookToBookStore = where(DSL.condition(condition)) /** * Create an inline derived table from this table