Missed methods in param shortcuts
This commit is contained in:
parent
a941420b8c
commit
803e1fdf13
@ -1,4 +1,4 @@
|
||||
@file:JvmName("_QueryParamKt")
|
||||
@file:JvmName("_QueryParamKt") // todo query_param_like
|
||||
|
||||
package ru.landgrafhomyak.db.serdha0.user_commons.construction
|
||||
|
||||
@ -47,6 +47,11 @@ public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> InsertQuery.Single
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
|
||||
@JvmName("queryParamLike\$target")
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> InsertQuery.FromSubquery.Constructor.Scope<qUE, ocUE, *>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> InsertQuery.FromSubquery.Constructor.Scope<qUE, *, ocUE>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
@ -59,6 +64,11 @@ public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> UpdateQuery.Single
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
|
||||
@JvmName("queryParamLike\$target")
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> UpdateQuery.FromSubquery.Constructor.Scope<qUE, ocUE, *>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> UpdateQuery.FromSubquery.Constructor.Scope<qUE, *, ocUE>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
@ -71,6 +81,10 @@ public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> DeleteQuery.Single
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
|
||||
@JvmName("queryParamLike\$target")
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> DeleteQuery.FromSubquery.Constructor.Scope<qUE, ocUE, *>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> DeleteQuery.FromSubquery.Constructor.Scope<qUE, *, ocUE>.queryParamLike(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): QueryParam<RT, DT, qUE> = this.queryParam(name, column.type)
|
@ -17,4 +17,8 @@ public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> SelectQuery.WithJo
|
||||
|
||||
public fun <qUE : Any, ocUE : Any, RT, DT : DatabaseType<RT>> SelectQuery.WithJoin.Constructor.Scope<qUE, *, ocUE>.returnColumnFromRight(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): Column<RT, DT, qUE> = this.returnColumn(name, this.selectColumnFromRight(column))
|
||||
): Column<RT, DT, qUE> = this.returnColumn(name, this.selectColumnFromRight(column))
|
||||
|
||||
public fun <qUE : Any, ocUE : Any, RT : Any, DT : DatabaseType<RT>> SelectQuery.WithJoin.Constructor.Scope<qUE, *, ocUE>.returnColumnFromRightAsNullable(
|
||||
name: String, column: Column<RT, DT, ocUE>
|
||||
): Column<RT?, DatabaseType.Nullable<RT, DT>, qUE> = this.returnColumn(name, this.selectColumnFromRightAsNullable(column))
|
Loading…
Reference in New Issue
Block a user