Class InsertConflictAction

  • All Implemented Interfaces:
    Serializable

    public class InsertConflictAction
    extends Object
    implements Serializable
    https://www.postgresql.org/docs/current/sql-insert.html
     conflict_action is one of:
    
         DO NOTHING
         DO UPDATE SET { column_name = { expression | DEFAULT } |
                         ( column_name [, ...] ) = [ ROW ] ( { expression | DEFAULT } [, ...] ) |
                         ( column_name [, ...] ) = ( sub-SELECT )
                       } [, ...]
                   [ WHERE condition ]
     
    See Also:
    Serialized Form