001package gudusoft.gsqlparser.nodes; 002 003/** 004 * Action type for PostgreSQL INSERT ... ON CONFLICT clause. 005 */ 006public enum EOnConflictActionType { 007 /** 008 * ON CONFLICT DO NOTHING - skip the conflicting row. 009 */ 010 doNothing, 011 012 /** 013 * ON CONFLICT DO UPDATE SET ... - update the existing row. 014 */ 015 doUpdate 016}