Package io.delta.tables
Class DeltaMergeNotMatchedActionBuilder
Object
io.delta.tables.DeltaMergeNotMatchedActionBuilder
Builder class to specify the actions to perform when a source row has not matched any target
 Delta table row based on the merge condition, but has matched the additional condition
 if specified.
 
 See DeltaMergeBuilder for more information.
 
- Since:
- 0.3.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionInsert a new row to the target table based on the rules defined byvalues.Insert a new row to the target table based on the rules defined byvalues.Insert a new target Delta table row by assigning the target columns to the values of the corresponding columns in the source row.insertExpr(Map<String, String> values) Insert a new row to the target table based on the rules defined byvalues.insertExpr(scala.collection.Map<String, String> values) Insert a new row to the target table based on the rules defined byvalues.
- 
Constructor Details- 
DeltaMergeNotMatchedActionBuilderpublic DeltaMergeNotMatchedActionBuilder()
 
- 
- 
Method Details- 
insertInsert a new row to the target table based on the rules defined byvalues.- Parameters:
- values- rules to insert a row as a Scala map between target column names and corresponding expressions as Column objects.
- Returns:
- (undocumented)
- Since:
- 0.3.0
 
- 
insertExprInsert a new row to the target table based on the rules defined byvalues.- Parameters:
- values- rules to insert a row as a Scala map between target column names and corresponding expressions as SQL formatted strings.
- Returns:
- (undocumented)
- Since:
- 0.3.0
 
- 
insertInsert a new row to the target table based on the rules defined byvalues.- Parameters:
- values- rules to insert a row as a Java map between target column names and corresponding expressions as Column objects.
- Returns:
- (undocumented)
- Since:
- 0.3.0
 
- 
insertExprInsert a new row to the target table based on the rules defined byvalues.- Parameters:
- values- rules to insert a row as a Java map between target column names and corresponding expressions as SQL formatted strings.
- Returns:
- (undocumented)
- Since:
- 0.3.0
 
- 
insertAllInsert a new target Delta table row by assigning the target columns to the values of the corresponding columns in the source row.- Returns:
- (undocumented)
- Since:
- 0.3.0
 
 
-