migrate sdnr features to phosphorus
[ccsdk/features.git] / sdnr / wt / data-provider / dblib / src / main / java / org / onap / ccsdk / features / sdnr / wt / dataprovider / database / sqldb / query / UpsertQuery.java
index e6f1e13..39c5054 100644 (file)
@@ -31,6 +31,10 @@ public class UpsertQuery<T extends DataObject> extends InsertQuery<T> {
     public UpsertQuery(Entity e, T object, String controllerId) {
         super(e, object, controllerId);
 
+    }
+    public UpsertQuery(Entity e, T object, String controllerId, boolean ignoreControllerId, boolean ignoreIdField) {
+        super(e, object, controllerId, ignoreControllerId, ignoreIdField);
+
     }
 
     @Override