Interface RowLevelOperationInfo
-
public interface RowLevelOperationInfo
An interface with logical information for a row-level operation such as DELETE or MERGE.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowLevelOperation.Command
command()
Returns the SQL command (e.g.org.apache.spark.sql.util.CaseInsensitiveStringMap
options()
Returns options that the user specified when performing the row-level operation.
-
-
-
Method Detail
-
options
org.apache.spark.sql.util.CaseInsensitiveStringMap options()
Returns options that the user specified when performing the row-level operation.
-
command
RowLevelOperation.Command command()
Returns the SQL command (e.g. DELETE, UPDATE, MERGE) for this row-level operation.
-
-