Interface RowLevelOperationInfo
-
public interface RowLevelOperationInfoAn 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.Commandcommand()Returns the SQL command (e.g.org.apache.spark.sql.util.CaseInsensitiveStringMapoptions()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.
-
-