net.dzikoysk.exposed.upsert.UpsertInsertStatement.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exposed-upsert Show documentation
Show all versions of exposed-upsert Show documentation
Exposed Upsert | Exposed extension for upsert operations
package net.dzikoysk.exposed.upsert
import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table
import org.jetbrains.exposed.sql.statements.InsertStatement
internal class UpsertInsertStatement(table: Table, isIgnore: Boolean = false) : InsertStatement(table, isIgnore) {
internal val builderValues: Map, Any?> = super.values
}