You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to use Slice(this, columns) manually since slice method have distinct columns fun slice(vararg columns: Expression<*>): FieldSet = Slice(this, columns.distinct())
The text was updated successfully, but these errors were encountered:
I need to be able to insert same expressions in multiple columns using insert from select
Example:
Users.insert(Users.slice(Users.name, Users.description, datetimeLiteral(now), datetimeLiteral(now)).select{ ... })
I need to use
Slice(this, columns)
manually since slice method have distinct columnsfun slice(vararg columns: Expression<*>): FieldSet = Slice(this, columns.distinct())
The text was updated successfully, but these errors were encountered: