- https://www.postgresql.org/docs/current/sql-insert.html ```txt "...UPDATE SET column" ``` Code: [InsertConflictAction.java](https://github.com/JSQLParser/JSqlParser/blob/b392733f25468f1b09b408820fcd02fab328f6b9/src/main/java/net/sf/jsqlparser/statement/insert/InsertConflictAction.java) There is no public method to get variable "updateSets". ```java public class InsertConflictAction { ConflictActionType conflictActionType; private final ArrayList<UpdateSet> updateSets = new ArrayList<>(); Expression whereExpression; ... } ``` ```txt InsertConflictAction conflictAction = insert.getConflictAction(); Missing method ==> conflictAction.getUpdateSets() ? ```