Package com.snowflake.snowpark_java
Class UpdateResult
- java.lang.Object
-
- com.snowflake.snowpark_java.UpdateResult
-
public class UpdateResult extends Object
Result of updating rows in an Updatable- Since:
- 1.1.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getMultiJoinedRowsUpdated()
Retrieves the number of multi-joined row has been updated.long
getRowsUpdated()
Retrieves the number of row has been updated.
-
-
-
Method Detail
-
getRowsUpdated
public long getRowsUpdated()
Retrieves the number of row has been updated.- Returns:
- a long number
- Since:
- 1.1.0
-
getMultiJoinedRowsUpdated
public long getMultiJoinedRowsUpdated()
Retrieves the number of multi-joined row has been updated.- Returns:
- a long number
- Since:
- 1.1.0
-
-