Package com.google.cloud.bigquery
Class DmlStats
- java.lang.Object
-
- com.google.cloud.bigquery.DmlStats
-
- All Implemented Interfaces:
Serializable
public abstract class DmlStats extends Object implements Serializable
Represents DML statistics information.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DmlStats.Builder
-
Constructor Summary
Constructors Constructor Description DmlStats()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Long
getDeletedRowCount()
Returns number of deleted Rows.abstract Long
getInsertedRowCount()
Returns number of inserted Rows.abstract Long
getUpdatedRowCount()
Returns number of updated Rows.static DmlStats.Builder
newBuilder()
abstract DmlStats.Builder
toBuilder()
-
-
-
Method Detail
-
getDeletedRowCount
@Nullable public abstract Long getDeletedRowCount()
Returns number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.- Returns:
- value or
null
for none
-
getInsertedRowCount
@Nullable public abstract Long getInsertedRowCount()
Returns number of inserted Rows. Populated by DML INSERT and MERGE statements.- Returns:
- value or
null
for none
-
getUpdatedRowCount
@Nullable public abstract Long getUpdatedRowCount()
Returns number of updated Rows. Populated by DML UPDATE and MERGE statements.- Returns:
- value or
null
for none
-
toBuilder
public abstract DmlStats.Builder toBuilder()
-
newBuilder
public static DmlStats.Builder newBuilder()
-
-