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 Summary
Constructors -
Method Summary
Modifier 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
-
DeltaMergeNotMatchedActionBuilder
public DeltaMergeNotMatchedActionBuilder()
-
-
Method Details
-
insert
Insert 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
-
insertExpr
Insert 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
-
insert
Insert 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
-
insertExpr
Insert 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
-
insertAll
Insert 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
-