Uses of Interface
org.springframework.data.relational.core.sql.UpsertBuilder.ConflictResolution
Packages that use UpsertBuilder.ConflictResolution
-
Uses of UpsertBuilder.ConflictResolution in org.springframework.data.relational.core.sql
Methods in org.springframework.data.relational.core.sql that return UpsertBuilder.ConflictResolutionModifier and TypeMethodDescriptionUpsertBuilder.OngoingConflictResolution.update(Collection<Column> columns) Resolve the conflict by updating the givencolumnsof the existing row.default UpsertBuilder.ConflictResolutionResolve the conflict by updating the givencolumnsof the existing row.UpsertBuilder.OngoingConflictResolution.updateRemainingColumns()Resolve the conflict by updating the existing row using the previously specified assignments for non-conflicting columns that are not part ofUpsertBuilder.ConflictColumn.with(Column).Method parameters in org.springframework.data.relational.core.sql with type arguments of type UpsertBuilder.ConflictResolutionModifier and TypeMethodDescriptionUpsertBuilder.UpsertOnMatch.onConflict(Function<UpsertBuilder.ConflictColumn, UpsertBuilder.ConflictResolution> resolution) Declare how to resolve a conflict if the row already exists.