Skip to content

Commit

Permalink
Removing UPSERT references from the SDK.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobby Swingler committed Jul 18, 2017
1 parent e72c599 commit 76bf83a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ public class StreamRequest {

private CreateDataSetRequest dataSet;
private String updateMethod;
private String keyColumnName;

public StreamRequest(){
this.dataSet = new CreateDataSetRequest();
this.updateMethod = UpdateMethod.APPEND;
this.keyColumnName = "";
}

public CreateDataSetRequest getDataSet() {
Expand All @@ -32,12 +30,4 @@ public String getUpdateMethod() {
public void setUpdateMethod( String updateMethod ) {
this.updateMethod = updateMethod;
}

public String getKeyColumnName() {
return keyColumnName;
}

public void setKeyColumnName( String keyColumnName ) {
this.keyColumnName = keyColumnName;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@
public class UpdateMethod {
public static final String APPEND = "APPEND";
public static final String REPLACE = "REPLACE";
public static final String UPSERT = "UPSERT";
}

0 comments on commit 76bf83a

Please sign in to comment.